标签:this python3 方法 ... 法语 ret 其他 否则 title
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
标签:this python3 方法 ... 法语 ret 其他 否则 title
原文地址:https://www.cnblogs.com/dillon-china/p/9257786.html