Python istitle()方法
Python istitle()方法
Python istitle() 方法檢測字符串中所有的單詞拼寫首字母是否為大寫,且其他字母為小寫。
語法
istitle()方法語法:
str.istitle()
參數
- 無。
返回值
如果字符串中所有的單詞拼寫首字母是否為大寫,且其他字母為小寫則返回 True,否則返回 False.
實例
以下實例展示了istitle()方法的實例:
#!/usr/bin/python str = "This Is String Example...Wow/b64/"; print str.istitle(); str = "This is string example....wow/b64/"; print str.istitle();
以上實例輸出結果如下:
True False
相關文章
- Python 日期和時間
- Python OS 文件/目錄方法
- Python CGI編程
- Python GUI編程 Tkinter
- Python 搜索樹
- Python 搜索算法
- Python3 數據類型
- Python3 字典(Dictionary)
- Python3 命名空間
- Python choice() 函數
- Python File flush() 方法
- Python os.chmod() 方法
- Python os.fchmod() 方法
- Python os.fsync() 方法
- Python istitle()方法
- Python ljust()方法
- Python rjust()方法
- Python List remove()方法
- Python time ctime()方法
- Python time tzset()方法