Python3 字符串
islower() 方法检测字符串是否由小写字母组成。
islower()方法语法:
str.islower()
如果字符串中包含至少一个区分大小写的字符,并且所有这些(区分大小写的)字符都是小写,则返回 True,否则返回 False
以下实例展示了islower()方法的实例:
#!/usr/bin/python3 str = "RUNOOB example....wow!!!" print (str.islower()) str = "runoob example....wow!!!" print (str.islower())
以上实例输出结果如下:
False True
Python3 字符串