Python swapcase() 方法將字符串字符的大小寫從大寫轉換為小寫,反之亦然。它不需要任何參數並在大小寫轉換後返回一個字符串。
簽名
swapcase()
參數
無參數
返回
它返回一個字符串。
讓我們看一些 swapcase() 方法的例子來了解它的函數。
Python 字符串 swapcase() 方法示例 1
這是一個使用 swapcase() 方法將大寫字母轉換為小寫字母的簡單示例。
# Python String swapcase() method
# Declaring variable
str = "HELLO JAVATPOINT"
# Calling function
str2 = str.swapcase()
# Displaying result
print (str2)
輸出:
hello javatpoint
Python 字符串 swapcase() 方法示例 2
此示例描述了從小寫到大寫的轉換。
# Python String swapcase() method
# Declaring variable
str = "hello javatpoint"
# Calling function
str2 = str.swapcase()
# Displaying result
print (str2)
輸出:
HELLO JAVATPOINT
Python 字符串 swapcase() 方法示例 3
如果字符串是駝峰式的,則此方法的輸出也將是駝峰式的。所有小寫字母都將轉換為大寫字母,反之亦然。
# Python String swapcase() method
# Declaring variable
str = "Hello JavTpoint"
# Calling function
str2 = str.swapcase()
# Displaying result
print (str2)
輸出:
hELLO jAVtPOINT
相關用法
- Python String startswith()用法及代碼示例
- Python String splitlines()用法及代碼示例
- Python String split()用法及代碼示例
- Python String Center()用法及代碼示例
- Python String isnumeric()用法及代碼示例
- Python String join()用法及代碼示例
- Python String isalnum()用法及代碼示例
- Python String rsplit()用法及代碼示例
- Python String upper()用法及代碼示例
- Python String isprintable()用法及代碼示例
- Python String translate()用法及代碼示例
- Python String format_map()用法及代碼示例
- Python String zfill()用法及代碼示例
- Python String isspace()用法及代碼示例
- Python String Encode()用法及代碼示例
- Python String endswith()用法及代碼示例
- Python String index()用法及代碼示例
- Python String rindex()用法及代碼示例
- Python String expandtabs()用法及代碼示例
- Python String rjust()用法及代碼示例
注:本文由純淨天空篩選整理自 Python String swapcase() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。