例如:
判断每个单词是否以大写字母开头:
txt = "Hello, And Welcome To My World!" x = txt.istitle() print(x)
1、定义和用法
如果文本中所有单词都以大写字母开头,其余单词都是小写字母,则istitle()
返回True,否则返回False。
符号和数字将被忽略。
2、调用语法
string.istitle()
3、参数说明
没有参数。
4、使用示例
例如:
判断每个单词是否以大写字母开头:
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())