python中判断一个字符串是否全是小写字母得代码
时间: 2023-03-10 22:25:24 浏览: 338
python正则表达式判断字符串是否是全部小写示例
5星 · 资源好评率100%
可以使用string.islower函数来判断字符串中的所有字符是否都是小写字母:str = "hello world"
if str.islower():
print("The string is all lowercase letters")
else:
print("The string is not all lowercase letters")
阅读全文