Python 的 str.swapcase()
方法將提供的字符串的所有小寫字符轉換為大寫,並將所有大寫字符轉換為小寫。
參數
無參數。
返回值
返回一個字符串,其中源字符串的所有小寫字符都轉換為大寫,並且所有大寫字符都轉換為小寫。
例子
要將 "Hello World!"
的所有小寫字符轉換為大寫,並將所有大寫字符轉換為小寫:
x = "Hello World!"
x.swapcase()
hELLO wORLD!
hELLO wORLD!
相關用法
- Python String swapcase()用法及代碼示例
- Python String startswith()用法及代碼示例
- Python String splitlines()用法及代碼示例
- Python String split方法用法及代碼示例
- Python String splitlines方法用法及代碼示例
- Python String strip方法用法及代碼示例
- Python String split()用法及代碼示例
- Python String strip()用法及代碼示例
- Python String startswith方法用法及代碼示例
- Python String count方法用法及代碼示例
- Python String isnumeric方法用法及代碼示例
- Python String Center()用法及代碼示例
- Python String zfill方法用法及代碼示例
- Python String rstrip方法用法及代碼示例
- Python String decode()用法及代碼示例
- Python String count()用法及代碼示例
- Python String join()用法及代碼示例
- Python String casefold()用法及代碼示例
- Python String isalnum()用法及代碼示例
- Python String endswith方法用法及代碼示例
- Python String rsplit()用法及代碼示例
- Python String isidentifier()用法及代碼示例
- Python String rjust方法用法及代碼示例
- Python String rpartition()用法及代碼示例
- Python String rpartition方法用法及代碼示例
注:本文由純淨天空篩選整理自Isshin Inada大神的英文原創作品 Python String | swapcase method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。