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())
自己试一试 »