Python 字串方法是資料操作和格式化的便利工具,在 Python 中扮演著文字處理的基礎角色。本文將介紹四個關鍵的 Python 字串方法 - upper()
、capitalize()
、title()
和 lower()
。您將學會如何在 Python 腳本中使用這些強大的工具。
upper()
方法返回原始字串的副本並將所有字元轉換為大寫。
string = "Hello, Python!"
print(string.upper())
輸出:
HELLO, PYTHON!
capitalize()
方法將字串的第一個字母轉換為大寫字母,並將字串中的其他字母轉換為小寫字母。
string = "hello, Python!"
print(string.capitalize())
輸出:
Hello, python!
title()
方法將字串中每個單字的第一個字母轉換為大寫字母,其他字母則轉換為小寫字母。
string = "hello, Python!"
print(string.title())
輸出:
Hello, Python!
lower()
方法將字串中的所有大寫字母轉換為小寫字母並返回結果。
string = "Hello, Python!"
print(string.lower())
輸出:
hello, python!
掌握這些字串方法將為您在 Python 之旅中打開新的視野。它們是簡單而強大的工具,可以使您在 Python 中進行資料操作的任務變得更加輕鬆和高效。記住,最好的學習方法就是實踐。所以,開始編寫您的 Python 腳本,並盡量多地使用這些方法。
# 完整程式碼
string = "Hello, Python!"
print("Upper:", string.upper())
print("Capitalize:", string.capitalize())
print("Title:", string.title())
print("Lower:", string.lower())
常見問題
capitalize()
和 title()
方法之間有什麼區別?
capitalize()
方法只將字串的第一個字元變成大寫,而 title()
方法則將字串中每個單字的第一個字元變成大寫。[Python] 通過各種實例深入理解位元運算符 |
---|
[Python] 通過各種實例深入理解關係運算符 |
[Python] 解決 'zsh: command not found: python' 錯誤的方法 |
[Python] 通過各種實例深入理解賦值運算符 |
[Python] 通過各種實例深入理解算術運算符 |
CloneCoding
創新從一行代碼開始!