如果字符串中的所有字符都是大寫,則 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
相關用法
- Python String isnumeric()用法及代碼示例
- Python String isalnum()用法及代碼示例
- Python String isprintable()用法及代碼示例
- Python String isspace()用法及代碼示例
- Python String isdigit()用法及代碼示例
- Python String isalpha()用法及代碼示例
- Python String istitle()用法及代碼示例
- Python String islower()用法及代碼示例
- Python String isidentifier()用法及代碼示例
- Python String isdecimal()用法及代碼示例
- Python String index()用法及代碼示例
- Python String Center()用法及代碼示例
- Python String join()用法及代碼示例
- Python String rsplit()用法及代碼示例
- Python String startswith()用法及代碼示例
- Python String upper()用法及代碼示例
- Python String splitlines()用法及代碼示例
- Python String translate()用法及代碼示例
- Python String split()用法及代碼示例
- Python String format_map()用法及代碼示例
注:本文由純淨天空篩選整理自 Python String isupper() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。