python学习
string.isupper()方法:
string.isupper()方法返回字符串中的所有字符是否是大写字母。
isupper()语法为:
string.isupper()
string.isupper()参数:
isupper()方法不带任何参数。
从string.isupper()返回值:
isupper()方法返回:
如果字符串中的所有字符均为大写字符,则为True
如果字符串中的任何字符为小写字符,则为False
下面,我们直接举例,如下:
01
string = "THIS IS GOOD!"#全部大写
print(string.isupper());
string = "THIS IS ALSO G00D!"#带有数字两个零
print(string.isupper());
string = "THIS IS not GOOD!"#大小写均有
print(string.isupper());
输出:
True
True
False
02
string = 'THIS IS GOOD'
if string.isupper() == True:
print('Does not contain lowercase letter.')
else:
print('Contains lowercase letter.')
string = 'THIS IS gOOD'
if string.isupper() == True:
print('Does not contain lowercase letter.')
else:
print('Contains lowercase letter.')
输出:
Does not contain lowercase letter.
Contains lowercase letter.
那么,这个方法还能用在哪里呢?
你学会了吗?
欢迎大家留言,一起讨论学习,
谢谢关注!