Python istitle() 方法

weixin_33912246發表於2017-10-18

描述

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

語法

istitle() 方法語法:

S.istitle()

引數

  • 無。

返回值

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

例項

以下例項展示了 istitle() 方法的例項:

#!/usr/bin/python3


S = "This Is String Example...Wow!!!"
print (S.istitle())

S = "This is string example....wow!!!"
print (S.istitle())

以上例項輸出結果如下:

True
False

相關文章