Python 3 - 字符串 istitle() 方法

  • 描述

    istitle()方法检查非基于大小写的字母后面的字符串中是否所有基于大小写的字符都是大写的,而所有其他基于大小写的字符都是小写的。
  • 句法

    以下是语法istitle()方法 -
    
    str.istitle()
    
  • 参数

    NA
  • 返回值

    如果字符串是首字母大写的字符串并且至少有一个字符,则此方法返回 true,例如,大写字符只能跟随非大写字符,而小写字符只能跟随大写字符。否则返回 false。
  • 例子

    以下示例显示了 istitle() 方法的用法。
    
    #!/usr/bin/python3
    str = "This Is String Example...Wow!!!"
    print (str.istitle())
    str = "This is string example....wow!!!"
    print (str.istitle())
    
  • 结果

    当我们运行上面的程序时,它会产生以下结果 -
    
    True
    False