📅  最后修改于: 2020-10-30 06:26:31             🧑  作者: Mango
如果字符串中的所有字符均为大写,则Python的isupper()方法返回True。如果字符不是大写,则返回False。
isupper()
不需要任何参数。
它返回True或False。
让我们看一下isupper()方法的一些例子,以了解它的功能。
# Python isupper() method example
# Variable declaration
str = "WELCOME TO JAVATPOINT"
# Calling function
str2 = str.isupper()
# Displaying result
print(str2)
输出:
True
# Python isupper() method example
str = "WELCOME TO JAVATPOINT"
str2 = str.isupper()
print(str2)
str3 = "Learn Java Here."
str4 = str3.isupper()
print(str4)
输出:
True
False
# Python isupper() method example
str = "WELCOME TO JAVATPOINT"
str2 = str.isupper()
print(str2)
str3 = "WELCOME To JAVATPOINT."
str4 = str3.isupper()
print(str4)
str5 = "123 @#$ -JAVA."
str6 = str5.isupper()
print(str6)
输出:
True
False
True