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