📜  Python string.isupper()方法

📅  最后修改于: 2020-10-30 06:26:31             🧑  作者: Mango

Python字符串isupper()方法

如果字符串中的所有字符均为大写,则Python的isupper()方法返回True。如果字符不是大写,则返回False。

签名

isupper()

参量

不需要任何参数。

返回

它返回True或False。

让我们看一下isupper()方法的一些例子,以了解它的功能。

Python字符串isupper()方法示例1

# Python isupper() method example
# Variable declaration
str = "WELCOME TO JAVATPOINT"
# Calling function
str2 = str.isupper()
# Displaying result
print(str2)

输出:

True

Python字符串isupper()方法示例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

Python字符串isupper()方法示例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