str.istitle()
NA
如果字串是標題字串,並且至少有一個字元,此方法返回 true,例如:大寫字元可能只能跟著不可大小字元和小寫字元只轉換一次。否則返回false。
#!/usr/bin/python3 str = "This Is String Example...Wow!!!" print (str.istitle()) str = "This is string example....wow!!!" print (str.istitle())
True False