python3 isupper()方法
描述
isupper() 方法检测字符串中所有的字母是否都为大写。
语法
isupper()方法语法:
str.isupper()
参数
- 无。
返回值
如果字符串中包含至少一个区分大小写的字符,并且所有这些(区分大小写的)字符都是大写,则返回 true,否则返回 false
实例
以下实例展示了isupper()方法的实例:
实例
#!/usr/bin/python3
str = "this is string example....wow!!!"
print (str.isupper())
str = "this is string example....wow!!!"
print (str.isupper())
str = "this is string example....wow!!!"
print (str.isupper())
str = "this is string example....wow!!!"
print (str.isupper())
以上实例输出结果如下:
true false
【说明】:本文章由站长整理发布,文章内容不代表本站观点,如文中有侵权行为,请与本站客服联系(QQ:254677821)!