小編給大家分享一下用python判斷字符大小寫(xiě)的方法,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!
成都創(chuàng)新互聯(lián)提供高防服務(wù)器、云服務(wù)器、香港服務(wù)器、服務(wù)器托管等
Python提供了isupper(),islower(),istitle()方法用來(lái)判斷字符串的大小寫(xiě)。
1、isupper()方法
Python isupper() 方法檢測(cè)字符串中所有的字母是否都為大寫(xiě)。
示例:
str = "THIS IS STRING EXAMPLE....WOW!!!"; print str.isupper(); str = "THIS is string example....wow!!!"; print str.isupper();
輸出如下:
True
False
2、islower()方法
Python islower() 方法檢測(cè)字符串是否由小寫(xiě)字母組成。
islower()方法語(yǔ)法:str.islower()
示例:
str = "THIS is string example....wow!!!"; print str.islower(); str = "this is string example....wow!!!"; print str.islower();
輸出如下:
False
True
3、istitle()方法
Python istitle() 方法檢測(cè)字符串中所有的單詞拼寫(xiě)首字母是否為大寫(xiě),且其他字母為小寫(xiě)。
istitle()方法語(yǔ)法:str.istitle()
示例:
str = "This Is String Example...Wow!!!"; print str.istitle(); str = "This is string example....wow!!!"; print str.istitle();
輸出如下:
True
False
看完了這篇文章,相信你對(duì)用python判斷字符大小寫(xiě)的方法有了一定的了解,想了解更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!