之前提到字串的取代與合併,
以及字串的分割之外,
字串處理還有其他許多不同的方法,
這裡就舉幾個使用方法為範例,
Python 基礎: 字串處理範例
同樣以 Hello World , Python 這個字串做為範例
字串轉大寫 upper()
str_a = 'Hello World , Python'
b = str_a.upper()
print(b)
使用此方法可以讓字串所有字母都轉為大寫
字串轉小寫 lower()
str_a = 'Hello World , Python'
c = str_a.lower()
print(c)
使用此方法讓字串所有字母都轉為小寫
字串首個字母改大寫 capitalize()
str_a = 'Hello World , Python'
d = c.capitalize()
print(d)
使用此方法讓字串首個字母轉為大寫
字串中每個 word 的首個字母大寫 title()
str_a = 'Hello World , Python'
e = c.title()
print(e)
使用此方法讓字串中每個 word 首字大寫
透過程式視覺化工具幫助理解:
刪除字串頭尾的特定字元 strip()
strip 若未指定要刪除的字元,
預設刪除的字元為空格
a = ' Python, '
b = a.strip(' ')
print(b)
c = b.strip(',')
print(c)
字串長度 len
此方法會回傳 字串的長度
d = len(c)
print(d)
同樣使用程式視覺化工具來幫助理解
除了上述這些,
字串處理還有其他許多方法,
就待有遇到再來介紹,
以上就是今天的主題
沒有留言:
張貼留言