Python islower()方法

2021-09-04 15:04 更新

Python islower()方法


描述

Python islower() 方法檢測(cè)字符串是否由小寫(xiě)字母組成。

語(yǔ)法

islower()方法語(yǔ)法:

str.islower()

參數(shù)

  • 無(wú)。

返回值

如果字符串中包含至少一個(gè)區(qū)分大小寫(xiě)的字符,并且所有這些(區(qū)分大小寫(xiě)的)字符都是小寫(xiě),則返回 True,否則返回 False

實(shí)例

以下實(shí)例展示了islower()方法的實(shí)例:

#!/usr/bin/python

str = "THIS is string example....wow!!!"; 
print str.islower();

str = "this is string example....wow!!!";
print str.islower();

以上實(shí)例輸出結(jié)果如下:

False
True
以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)