如果字符串中的所有字母均為小寫字母,則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('包含大寫字母。')
運行該程序時,輸出為:
不包含大寫字母。 包含大寫字母。