共计 221 个字符,预计需要花费 1 分钟才能阅读完成。
可以使用 isupper()
和islower()
方法来判断字符串是否全为大写或小写字母。示例如下:
s = "HELLO"
if s.isupper():
print(" 字符串全为大写字母 ")
else:
print(" 字符串不全为大写字母 ")
s = "hello"
if s.islower():
print(" 字符串全为小写字母 ")
else:
print(" 字符串不全为小写字母 ")
以上代码会输出:
字符串全为大写字母
字符串全为小写字母
丸趣 TV 网 – 提供最优质的资源集合!
正文完