Python 字符串 istitle() 方法

实例

检查每个单词是否以大写字母开头:

  1. txt = "Hello, And Welcome To My World!"
  2.  
  3. x = txt.istitle()
  4.  
  5. print(x)

定义和用法

如果文本中的所有单词均以大写字母开头,而单词的其余部分均为小写字母,则 istitle() 方法返回 True。否则返回 False。

符号和数字将被忽略。

语法

  1. string.istitle()

参数值

无参数.

更多实例

实例

检查每个单词是否以大写字母开头:

  1. a = "HELLO, AND WELCOME TO MY WORLD"
  2. b = "Hello"
  3. c = "22 Names"
  4. d = "This Is %'!?"
  5.  
  6. print(a.istitle())
  7. print(b.istitle())
  8. print(c.istitle())
  9. print(d.istitle())