将字符串的第一个字母变成大写,其他字母变小写,中文不变。
string.capitalize()
def test(): val="abc中国" ret=val.capitalize() print(ret)