swapcase 将字符串大写转小写,小写转大写 name = "xiaoMi" new_name = name.swapcase() print(new_name) 执行结果 XIAOmI 只对字符串中的字母有效 喜欢