字符串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
相關用法
- Numpy string swapcase()用法及代碼示例
- Python Pandas Series.str.swapcase()用法及代碼示例
- Python string max()用法及代碼示例
- Python string min()用法及代碼示例
注:本文由純淨天空篩選整理自Striver大神的英文原創作品 Python string | swapcase()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。