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


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


如果字符串中的所有字母都是小寫字母,islower() 方法將返回 True。如果字符串包含至少一個大寫字母,則返回 False。

用法:

string.islower()

參數:

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

返回:

islower() 方法返回:

  • True 如果字符串中存在的所有字母都是小寫字母。
  • False 如果字符串包含至少一個大寫字母。

示例 1:islower() 的返回值

s = 'this is good'
print(s.islower())

s = 'th!s is a1so g00d'
print(s.islower())

s = 'this is Not good'
print(s.islower())

輸出

True
True
False

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

s = 'this is good'
if s.islower() == True:
  print('Does not contain uppercase letter.')
else:
  print('Contains uppercase letter.')
  
s = 'this is Good'
if s.islower() == True:
  print('Does not contain uppercase letter.')
else:
  print('Contains uppercase letter.')

輸出

Does not contain uppercase letter.
Contains uppercase letter.

相關用法


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