Python istitle() 字符串方法

  • 定义和用法

    istitle() 如果文本中的所有单词均以大写字母开头,则该方法返回True,而单词的其余部分均为小写字母,否则返回False。符号和数字将被忽略。
  • 实例

    检查每个单词是否以大写字母开头:
    txt = "Hello, And Welcome To My World!"
    
    x = txt.istitle()
    
    print(x)
    尝试一下
  • 句法

    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())
    
    尝试一下
  • 相关页面

    delattr() - 删除去一个属性
    getattr() - 获得一个属性的值
    hasattr() - 检查是否一个属性存在