Python isupper()方法
Python isupper()方法
Python isupper() 方法检测字符串中所有的字母是否都为大写。
语法
isupper()方法语法:
str.isupper()
参数
- 无。
返回值
如果字符串中包含至少一个区分大小写的字符,并且所有这些(区分大小写的)字符都是大写,则返回 True,否则返回 False
实例
以下实例展示了isupper()方法的实例:
#!/usr/bin/python str = "THIS IS STRING EXAMPLE....WOW/b64/"; print str.isupper(); str = "THIS is string example....wow/b64/"; print str.isupper();
以上实例输出结果如下:
True False
相关文章
- Python 条件语句
- Python 字符串
- Python 列表 List
- Python 数组
- Python 二维数组
- Python 搜索树
- Python 分而治之
- Python3 元组(Tuple)
- Python3 函数
- Python3 模块
- Python modf() 函数
- Python os.closerange() 方法
- Python os.mkdir() 方法
- Python os.openpty() 方法
- Python os.pathconf() 方法
- Python isnumeric()方法
- Python rfind()方法
- Python List list()方法
- Python List append()方法
- Python 字典 Dictionary values()方法