python提供了isupper(),islower(),istitle()方法用來判斷字串的大小寫, 具體例項如下:
例如:
>>> str_1 = "hello python" # 全大寫
>>> str_2 = "hello python" # 大小寫混合
>>> str_3 = "hello python" # 單詞首字母大寫
>>> str_4 = "hello python" # 全小寫
isupper() 判斷是否全是大寫
>>> str_1.isupper()
true
>>> str_2.isupper()
false
>>> str_3.isupper()
false
>>> str_4.isupper()
false
islower()判斷是否全是小寫
>>> str_1.islower()
false
>>> str_2.islower()
false
>>> str_3.islower()
false
>>> str_4.islower()
true
istitle()判斷首字母是否大寫, 其餘的是否小寫
>>> str_1.istitle()
false
>>> str_2.istitle()
false
>>> str_3.istitle()
true
>>> str_4.istitle()
false
python大小寫轉換函式
1.全部轉換成大寫 upper 用法 str marsggbo print str.upper 結果 marsggbo 2.全部轉換成小寫 lower 用法 str marsggbo print str.lower 結果 marsggbo 3.首字母轉換成大寫 capitalize 其餘全部小寫 注...
Python大小寫轉換
來自 大寫把所有字元中的小寫字母轉換成大寫字母 str hello world print str.upper hello world 小寫 把所有字元中的大寫字母轉換成小寫字母 str hello world print str.lower hello world 第乙個字母轉為大寫 把第乙個字母...
Python大小寫轉換
a b c d這樣的52個字母 包括大寫 在計算機中儲存時也要使用二進位制數來表示。標準ascii碼使用7位二進位制數 剩下的1位二進位制為0 來表示所有的大寫和小寫字母,如下圖所示,可以看出字母對應大小寫的差值為32。注意 python 中,使用ord 函式將 字元 轉換成其對應的 ascii 碼...