Python 字符串 swapcase() 方法
Python基础 2022-06-06 15:22:35小码哥的IT人生shichen
Python 字符串 swapcase() 方法
实例
将小写字母大写,大写字母小写:
txt = "Hello My Name Is Elon"
x = txt.swapcase()
print(x)
完整实例:
txt = "Hello My Name Is ELON"
x = txt.swapcase()
print(x)
定义和用法
swapcase() 方法返回一个字符串,其中所有大写字母均成为小写字母,反之亦然。
语法
string.swapcase()
参数值
无参数.