黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

Python islower()方法

Python islower()方法

Python 字符串Python 字符串

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

 

語法

islower()方法語法:

str.islower()

 

參數(shù)

  • 無。

 

返回值

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

 

實例

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

#!/usr/bin/python

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

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

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

False
True

Python 字符串Python 字符串

下一節(jié):Python isnumeric()方法

Python 教程

相關(guān)文章