Python 的 str.isupper(~)
方法返回 boolean
指示字符串中的所有大小写字符是否均为大写。请注意,当字符串仅包含特殊字符时,返回 False
。
参数
无参数。
返回值
boolean
指示字符串中的所有大小写字符是否均为大写。
例子
基本用法
当所有大小写字符都不是大写时:
x = 'SkyTowner'
x.isupper()
False
当所有大小写字符均为大写时:
y = 'SKYTOWNER'
y.isupper()
True
非大小写字符
当所有字符都是特殊字符或数字时:
z = '123'
z.isupper()
False
当字符串是特殊字符和大写字符的混合时:
a = '123A'
a.isupper()
True
请注意,isupper()
方法仅检查所有大小写字符是否均为大写,而忽略数字等非大小写字符。
相关用法
- Python String isupper()用法及代码示例
- Python String isnumeric方法用法及代码示例
- Python String isalnum()用法及代码示例
- Python String isidentifier()用法及代码示例
- Python String isprintable()用法及代码示例
- Python String isalnum方法用法及代码示例
- Python String isalpha方法用法及代码示例
- Python String isspace()用法及代码示例
- Python String istitle方法用法及代码示例
- Python String isspace方法用法及代码示例
- Python String isprintable方法用法及代码示例
- Python String isdecimal()用法及代码示例
- Python String isdigit方法用法及代码示例
- Python String isdigit()用法及代码示例
- Python String isalpha()用法及代码示例
- Python String isdecimal方法用法及代码示例
- Python String istitle()用法及代码示例
- Python String islower方法用法及代码示例
- Python String islower()用法及代码示例
- Python String isascii方法用法及代码示例
- Python String isnumeric()用法及代码示例
- Python String isidentifier方法用法及代码示例
- Python String index()用法及代码示例
- Python String index方法用法及代码示例
- Python String count方法用法及代码示例
注:本文由纯净天空筛选整理自Isshin Inada大神的英文原创作品 Python String | isupper method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。