检查字符串中所有的单词拼写首字母是否为大写,且其他字母为小写。
string.istitle()
可能出现的错误信息:
def test(): val="Abc Def" print(val.istitle())