python swapcase()
函数 将字符串中的大小写字母同时进行互换。
即将字符串str中的大写字母转换为小写字母,将小写字母转换为大写字母。
语法
str.swapcase()
返回值
返回转换后的字符串
程序示例
#!/usr/bin/python
# coding=utf-8
str1 = "I Love PYTHON"
str2 = "我爱python Python pYTHON"
print(str1.swapcase()) #将字符串str1中的大写字母转为小写字母,小写字母转换为大写字母。
print(str2.swapcase())
程序运行结果:
i lOVE python
我爱PYTHON pYTHON Python
我爱PYTHON pYTHON Python