Python提供了isupper(),islower(),istitle()方法用來判斷字串的大小寫, 具體實例如下:
##例如:(推薦學習:Python影片教學)
>>> 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教學欄位進行學習!
以上是python用函數怎麼判斷大小寫的詳細內容。更多資訊請關注PHP中文網其他相關文章!