python istitle方法检查字符串中所有单词是否首字母大写
str.istitle()是Python字符串方法,用于检查字符串中的所有单词是否以大写字母开头,并返回布尔值。如果所有单词的首字母都是大写字母,则返回True,否则返回False。
以下是str.istitle()方法的示例:
>>> s = "This Is A Title" >>> s.istitle() True >>> s = "This is not a title" >>> s.istitle() False >>> s = "This Is Not A Title" >>> s.istitle() False >>> s = "123 This Is Not A Title" >>> s.istitle() True
如上所示,str.istitle()方法还可以检查数字开头的字符串是否具有标题格式。
相关文章