把字符串中的大小写进行翻转,中文不变。
string.swapcase()
可能出现的错误信息:
def test(): val="ABC中国abc" ret=val.swapcase() print(ret)