Python 字符串 isupper()方法
Python的 isupper() 方法如果字符串中的所有字符都是大写字母,则返回True。如果字符不是大写字母,则返回False。
语法
isupper()
参数
不需要任何参数。
返回值
它返回True或False。
让我们看一些isupper()方法的示例,以了解它的功能。
示例1
# Python isupper() method example
# Variable declaration
str = "WELCOME TO JAVATPOINT"
# Calling function
str2 = str.isupper()
# Displaying result
print(str2)
输出:
True
示例2
# Python isupper() method example
str = "WELCOME TO JAVATPOINT"
str2 = str.isupper()
print(str2)
str3 = "Learn Java Here."
str4 = str3.isupper()
print(str4)
输出:
True
False
示例3
# 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