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()方法