python istitle()
函数用于检测判断字符串中所有单词的首字母是否为大写,且其它字母是否为小写。字符串中可以存在其它非字母的字符。
语法
str.istitle()
参数
无
返回值
返回值为布尔类型(True,False)
若字符串中所有单词的首字母为大写,且其它字母为小写,则返回 True,否则返回 False.
程序示例
#!/usr/bin/python
# coding=utf-8
str1 = "I Love Python" #各单词的首字母均为大写,其余字母为小写
str2 = "I love python"
str3 = "I LOVE PYTHON"
str4 = "我爱Python" #存在其它非字母字符,
print(str1.istitle())
print(str2.istitle())
print(str3.istitle())
print(str4.istitle())
程序运行结果:
True
False
False
True
False
False
True