Python 字符串 istitle() 方法
定义和用法
istitle()
如果文本中的所有单词都以大写字母开头,则该方法返回True,并且单词的其余部分为小写字母,否则为False。
符号和数字被忽略。
语法
string.istitle()
参数值
没有参数。更多例子
实例
检查每个单词是否以大写字母开头:a = "HELLO, AND WELCOME TO MY WORLD" b = "Hello" c = "22 Names" d = "This Is %'!?" print(a.istitle()) print(b.istitle()) print(c.istitle()) print(d.istitle())运行示例»