Python3 字符串 Python3 字符串


描述

swapcase() 方法用于對(duì)字符串的大小寫字母進(jìn)行轉(zhuǎn)換。

語(yǔ)法

swapcase()方法語(yǔ)法:

str.swapcase();

參數(shù)

  • NA。

返回值

返回大小寫字母轉(zhuǎn)換后生成的新字符串。

實(shí)例

以下實(shí)例展示了swapcase()函數(shù)的使用方法:

#!/usr/bin/python3

str = "this is string example....wow!!!"
print (str.swapcase())

str = "This Is String Example....WOW!!!"
print (str.swapcase())

以上實(shí)例輸出結(jié)果如下:

THIS IS STRING EXAMPLE....WOW!!!
tHIS iS sTRING eXAMPLE....wow!!!

Python3 字符串 Python3 字符串