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/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Python中判斷字母大小寫常用的方法!Python
- python怎麼判斷星期幾Python
- 怎麼判斷dns汙染,怎麼判斷dns汙染,具體判斷方法DNS
- mssql sqlserver 判斷字串大小寫的方法分享SQLServer字串
- Python中怎麼轉換字串大小寫Python字串
- 怎麼判斷Python數字中的偶數Python
- Python中if條件判斷語句怎麼用?Python
- python怎麼判斷一個數是幾位數Python
- Python中怎麼判斷路徑是否為目錄?Python
- 怎麼判斷mysql表是否存在MySql
- js判斷上傳檔案大小JS
- 怎麼判斷股市大底?五大特徵教你判斷股市大底特徵
- 如何判斷作業系統大小端作業系統
- jquery怎麼樣判斷檔案是否存在jQuery
- 怎麼判斷Linux是否適合你?Linux
- 多屏判斷css改寫CSS
- 怎麼判斷靠譜的it培訓機構
- python如何判斷字串以什麼結尾Python字串
- python簡介怎麼寫-python爬蟲簡歷怎麼寫Python爬蟲
- 【kingsql分享】Linux平臺判斷大小端SQLLinux
- C語言的判斷機器的大小端C語言
- 最簡潔的python條件判斷語句寫法Python
- python最簡潔的條件判斷語句寫法Python
- 判斷是什麼字元字元
- python如何判斷字串相等Python字串
- python判斷是否為listPython
- python if判斷的使用格式Python
- Python中None如何判斷PythonNone
- python如何判斷迴文Python
- python 判斷是否為中文Python
- python中字串格式判斷Python字串
- python兩種簡潔的條件判斷語句寫法Python
- 怎麼判斷自己是否適合學習六西格瑪?
- 怎麼判斷機器視覺的照明的好壞視覺
- C#上傳檔案圖片怎麼判斷格式C#
- Python 基礎 - if else流程判斷Python
- Python中型別最佳判斷方法Python型別
- 如何使用Python判斷奇偶數?Python