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

Python istitle()方法

Python istitle()方法

Python 字符串Python 字符串

Python istitle() 方法檢測(cè)字符串中所有的單詞拼寫首字母是否為大寫,且其他字母為小寫。

 

語法

istitle()方法語法:

str.istitle()

 

參數(shù)

  • 無。

 

返回值

如果字符串中所有的單詞拼寫首字母是否為大寫,且其他字母為小寫則返回 True,否則返回 False.

 

實(shí)例

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

#!/usr/bin/python


str = "This Is String Example...Wow/b64/";
print str.istitle();

str = "This is string example....wow/b64/";
print str.istitle();

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

True
False

Python 字符串Python 字符串

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

Python 教程

相關(guān)文章