Python之大小寫轉換
阿新 • • 發佈:2018-11-10
1 upper lower
大小寫轉換,字串中所有字母全部轉
strData = "We aRe12 family!"
strNew = strData.upper() ,所有字母全部大寫
strNew = strData.lower() ,所有字母全部小寫
2 title
strData = "We aRe12 family!"
strNew = strData.title()
print(strNew)
#輸出---- We Are12 Family! 單詞首字母大寫,其他全部轉成小寫
strData = "We aRe12 fam12ily!"
strNew = strData.title()
print (strNew)
#輸出---- We Are12 Fam12Ily! 單詞,只要該字母前是非字母,就會轉換
3 capitalize
strData = "We aRe12 fam12ily!"
strNew = strData.capitalize()
print(strNew)
#輸出---- We are12 fam12ily! 字串首字母大寫(如首位不是字母,保證不變),其餘全部小寫
4 swapcase
strData = "We aRe12 fam12ily!"
strNew = strData.swapcase()
print(strNew)
#輸出---- wE ArE12 FAM12ILY! 大小寫切換