當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python String isupper()用法及代碼示例


字符串isupper() 方法返回字符串中的所有字符是否都大寫。

用法:

string.isupper()

參數:

isupper() 方法不接受任何參數。

返回:

isupper() 方法返回:

  • True如果字符串中的所有字符都是大寫字符
  • False如果字符串中的任何字符都是小寫字符

示例 1:isupper() 的返回值

# example string
string = "THIS IS GOOD!"
print(string.isupper());

# numbers in place of alphabets
string = "THIS IS ALSO G00D!"
print(string.isupper());

# lowercase string
string = "THIS IS not GOOD!"
print(string.isupper());

輸出

True
True
False

示例 2:如何在程序中使用isupper()?

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.

相關用法


注:本文由純淨天空篩選整理自 Python String isupper()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。