Python 3 - 字符串swapcase() 方法
-
描述
swapcase()方法返回字符串的副本,其中所有基于大小写的字符都已交换大小写。 -
句法
以下是语法swapcase()方法 -str.swapcase();
-
参数
NA -
返回值
此方法返回字符串的副本,其中所有基于大小写的字符都已交换大小写。 -
例子
以下示例显示了 swapcase() 方法的用法。#!/usr/bin/python3 str = "this is string example....wow!!!" print (str.swapcase()) str = "This Is String Example....WOW!!!" print (str.swapcase())
-
结果
当我们运行上面的程序时,它会产生以下结果 -THIS IS STRING EXAMPLE....WOW!!! tHIS iS sTRING eXAMPLE....wow!!!