您好,登錄后才能下訂單哦!
小編給大家分享一下用python判斷字符大小寫的方法,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!
Python提供了isupper(),islower(),istitle()方法用來判斷字符串的大小寫。
1、isupper()方法
Python isupper() 方法檢測字符串中所有的字母是否都為大寫。
示例:
str = "THIS IS STRING EXAMPLE....WOW!!!"; print str.isupper(); str = "THIS is string example....wow!!!"; print str.isupper();
輸出如下:
True
False
2、islower()方法
Python islower() 方法檢測字符串是否由小寫字母組成。
islower()方法語法: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() 方法檢測字符串中所有的單詞拼寫首字母是否為大寫,且其他字母為小寫。
istitle()方法語法:str.istitle()
示例:
str = "This Is String Example...Wow!!!"; print str.istitle(); str = "This is string example....wow!!!"; print str.istitle();
輸出如下:
True
False
看完了這篇文章,相信你對用python判斷字符大小寫的方法有了一定的了解,想了解更多相關知識,歡迎關注億速云行業(yè)資訊頻道,感謝各位的閱讀!
免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。