Python字串istitle()
方法檢查字串中所有可大小寫的第一個字元是否為大寫,所有其他可大小寫的字元是否均為小寫。
語法
以下是istitle()
方法的語法 -
str.istitle()
引數
返回值
true
。否則返回false
。範例
以下範例顯示了istitle()
方法的用法。
#!/usr/bin/python3
str = "This Is String Example...Wow!!!"
print (str.istitle())
str = "This is string example....wow!!!"
print (str.istitle())
當執行上面的程式,它產生以下結果 -
True
False