当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python string swapcase()用法及代码示例


字符串swapcase()方法将给定字符串的所有大写字符转换为小写,反之亦然,并将其返回。

用法:

string_name.swapcase()
Here string_name is the string whose cases are to be swapped.



参数:swapcase()方法不带任何参数。

返回值:

The swapcase() method returns a string with all the cases changed.

以下是swapcase()方法的Python实现

# Python program to demonstrate the use of 
# swapcase() method   
  
string = "gEEksFORgeeks"
  
# prints after swappong all cases 
print(string.swapcase())    
  
string = "striver" 
print(string.swapcase())  

输出:

GeeKSforGEEKS
STRIVER


相关用法


注:本文由纯净天空筛选整理自Striver大神的英文原创作品 Python string | swapcase()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。