返回"标题化"的字符串,就是说所有单词都是以大写开始,其余字母均为小写,中文不变。
string.title()
def test(): val="abc中国" ret=val.title() print(ret)