istitle
判断字符串是否是标题类型 只试用于英文
str = 'wanjunshijie'
newstr = str.istitle()
print(newstr)
# 返回False
str2 = 'Hello Word'
newstr2 = str2.istitle()
print(newstr2)
# 返回 True
判断字符串是否是标题类型 只试用于英文
str = 'wanjunshijie'
newstr = str.istitle()
print(newstr)
# 返回False
str2 = 'Hello Word'
newstr2 = str2.istitle()
print(newstr2)
# 返回 True