如果字符串中的所有字母均为小写字母,则islower()方法返回True。如果字符串包含至少一个大写字母,则返回False。
islower()的语法为:
string.islower()
islower()方法不带任何参数。
islower()方法返回:
True 如果字符串中存在的所有字母均为小写字母。
False 如果字符串包含至少一个大写字母。
s = 'this is good' print(s.islower()) s = 'th!s is a1so g00d' print(s.islower()) s = 'this is Not good' print(s.islower())
运行该程序时,输出为:
True True False
s = 'this is good' if s.islower() == True: print('不包含大写字母。') else: print('包含大写字母。') s = 'this is Good' if s.islower() == True: print('不包含大写字母。') else: print('包含大写字母。')
运行该程序时,输出为:
不包含大写字母。 包含大写字母。