Python islower()方法
Python islower()方法
Python islower() 方法检测字符串是否由小写字母组成。
语法
islower()方法语法:
str.islower()
参数
- 无。
返回值
如果字符串中包含至少一个区分大小写的字符,并且所有这些(区分大小写的)字符都是小写,则返回 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();
以上实例输出结果如下:
False True
相关文章
- Python 变量类型
- Python for 循环语句
- Python break 语句
- Python 元组
- Python GUI编程 Tkinter
- Python 链表
- Python 算法设计
- Python3 作用域
- Python sqrt() 函数
- Python seed() 函数
- 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()方法