string.swapcase()方法
swapcase()方法将给定字符串的所有大写字符转换为小写,并将所有小写字符转换为大写字符,然后将其返回。
swapcase()语法
string.swapcase()
swapcase()参数
swapcase()方法不带任何参数。
从swapcase()返回值
swapcase()方法返回该字符串,其中所有大写字符均转换为小写,小写字符均转换为大写。
下面,我们上代码演示,如下:
示例1:使用swapcase()将小写字母转换为大写字母,反之亦然
# example string
string = "THIS SHOULD ALL BE LOWERCASE."
print(string.swapcase())
string = "this should all be uppercase."
print(string.swapcase())
string = "ThIs ShOuLd Be MiXeD cAsEd."
print(string.swapcase())
输出:
this should all be lowercase.
THIS SHOULD ALL BE UPPERCASE.
tHiS sHoUlD bE mIxEd CaSeD.
注意:如果只想将字符串转换为小写,请使用lower()方法。 同样,如果只想将字符串转换为大写,请使用upper()方法,这两个方法我之前都写过,可以在我的文章里面找到。
你学会了吗?
欢迎大家留言,
一起讨论学习,
谢谢关注!
领取专属 10元无门槛券
私享最新 技术干货