Python String islower() 方法
islower() 方法检测字符串是否由小写字母组成。
Python String islower() 语法
islower()方法语法:
str.islower()
Python String islower() 参数
- 无。
Python String islower() 返回值
如果字符串中包含至少一个区分大小写的字符,并且所有这些(区分大小写的)字符都是小写,则返回 True,否则返回 False
Python String islower() 示例1
以下实例展示了islower()方法的实例:
#!/usr/bin/python3
str1 = "APIDEMOS example....wow!"
print (str1.islower())
str1 = "apidemos example....wow!"
print (str1.islower())
islow_str = "apidemos"
not_islow = "ApiDemos"
# checking which string is completely lower
print ("Is", islow_str, "full lower ? : " + str(islow_str.islower()))
print ("Is", not_islow, "full lower ? : " + str(not_islow.islower()))
输出: