如果字符串中的所有字母都是小写字母,islower() 方法将返回 True。如果字符串包含至少一个大写字母,则返回 False。
用法:
string.islower()
参数:
islower()
方法不接受任何参数。
返回:
islower()
方法返回:
True
如果字符串中存在的所有字母都是小写字母。False
如果字符串包含至少一个大写字母。
示例 1:islower() 的返回值
s = 'this is good'
print(s.islower())
s = 'th!s is a1so g00d'
print(s.islower())
s = 'this is Not good'
print(s.islower())
输出
True True False
示例 2:如何在程序中使用islower()?
s = 'this is good'
if s.islower() == True:
print('Does not contain uppercase letter.')
else:
print('Contains uppercase letter.')
s = 'this is Good'
if s.islower() == True:
print('Does not contain uppercase letter.')
else:
print('Contains uppercase letter.')
输出
Does not contain uppercase letter. Contains uppercase letter.
相关用法
- Python String isalnum()用法及代码示例
- Python String isprintable()用法及代码示例
- Python String isspace()用法及代码示例
- Python String isdecimal()用法及代码示例
- Python String isdigit()用法及代码示例
- Python String isupper()用法及代码示例
- Python String isalpha()用法及代码示例
- Python String istitle()用法及代码示例
- Python String isidentifier()用法及代码示例
- Python String isnumeric()用法及代码示例
- Python String index()用法及代码示例
- Python String Center()用法及代码示例
- Python String decode()用法及代码示例
- Python String join()用法及代码示例
- Python String casefold()用法及代码示例
- Python String rsplit()用法及代码示例
- Python String startswith()用法及代码示例
- Python String rpartition()用法及代码示例
- Python String splitlines()用法及代码示例
- Python String upper()用法及代码示例
注:本文由纯净天空筛选整理自 Python String islower()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。