位置:首頁 > 腳本語言 > Python教學 > Python istitle()方法

Python istitle()方法

istitle()方法檢查在字符串中的非casebased字母所有字符是否為大寫字母,並且其他字符基於小寫。

語法

以下是istitle()方法的語法:

str.istitle()

參數

  • NA

返回值

如果該字符串是一個titlecased字符串,至少有一個字符,比如大寫字符,隻能跟著無封裝字符小寫字符此方法返回true。它,否則返回false。

例子

下麵的例子顯示了istitle()方法的使用。

#!/usr/bin/python


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

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

當我們運行上麵的程序,它會產生以下結果:

True
False