python怎麼判斷大小寫

船頭尺發表於2021-09-11

python怎麼判斷大小寫

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

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/3016/viewspace-2836057/,如需轉載,請註明出處,否則將追究法律責任。

相關文章