Python islower()方法
Python islower()方法
Python islower() 方法檢測字符串是否由小寫字母組成。
語法
islower()方法語法:
str.islower()
參數(shù)
- 無。
返回值
如果字符串中包含至少一個區(qū)分大小寫的字符,并且所有這些(區(qū)分大小寫的)字符都是小寫,則返回 True,否則返回 False
實例
以下實例展示了islower()方法的實例:
#!/usr/bin/python str = "THIS is string example....wow/b64/"; print str.islower(); str = "this is string example....wow/b64/"; print str.islower();
以上實例輸出結(jié)果如下:
False True
相關(guān)文章
- Python 變量類型
- Python for 循環(huán)語句
- Python break 語句
- Python 元組
- Python GUI編程 Tkinter
- Python 鏈表
- Python 算法設(shè)計
- Python3 作用域
- Python sqrt() 函數(shù)
- Python seed() 函數(shù)
- Python os.lchflags() 方法
- Python os.lseek() 方法
- Python os.makedev() 方法
- Python os.ttyname() 方法
- Python expandtabs()方法
- Python lower()方法
- Python splitlines()方法
- Python List max()方法
- Python List count()方法
- Python List sort()方法