Python Casefold() 方法返回字符串的小寫副本。它與小寫方法更相似,隻是它取消了字符串中存在的所有大小寫區別。
例如在德語中,'β' 等同於 "ss"。由於它已經是小寫的,小寫什麽都不做並打印 'β' 而 casefold 將其轉換為 "ss"。
簽名
casefold()
參數
不需要參數。
返回類型
它返回小寫字符串。
Python版
這個函數是在 Python 3.3 中引入的。
Python 字符串 Casefold() 方法示例 1
# Python casefold() function example
# Variable declaration
str = "JAVATPOINT"
# Calling function
str2 = str.casefold()
# Displaying result
print("Old value:", str)
print("New value:", str2)
輸出:
Old value:JAVATPOINT New value:javatpoint
Python 字符串 Casefold() 方法示例 2
casefold 的強度,它不僅可以轉換為小寫,而且還可以嚴格轉換。看下麵的例子 'β' 轉換成 "ss"。
# Python casefold() function example
# Variable declaration
str = "JAVATPOINT - β"
# Calling function
str2 = str.casefold()
# Displaying result
print("Old value:", str)
print("New value:", str2)
輸出:
Old value:JAVATPOINT - β New value:javatpoint ? ss
Python 字符串 Casefold() 方法示例 3
如果字符串是駝峰式,它仍然將整個字符串轉換為小寫。
# Python casefold() function example
# Variable declaration
str = "JaVaTpOiNt"
# Calling function
str2 = str.casefold()
# Displaying result
print("Old value:", str)
print("New value:", str2)
輸出:
Old value:JaVaTpOiNt New value:javatpoint
相關用法
- Python String Center()用法及代碼示例
- Python String Count()用法及代碼示例
- Python String isnumeric()用法及代碼示例
- Python String join()用法及代碼示例
- Python String isalnum()用法及代碼示例
- Python String rsplit()用法及代碼示例
- Python String startswith()用法及代碼示例
- Python String upper()用法及代碼示例
- Python String splitlines()用法及代碼示例
- Python String isprintable()用法及代碼示例
- Python String translate()用法及代碼示例
- Python String split()用法及代碼示例
- Python String format_map()用法及代碼示例
- Python String zfill()用法及代碼示例
- Python String isspace()用法及代碼示例
- Python String Encode()用法及代碼示例
- Python String endswith()用法及代碼示例
- Python String index()用法及代碼示例
- Python String rindex()用法及代碼示例
- Python String swapcase()用法及代碼示例
注:本文由純淨天空篩選整理自 Python String Casefold() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。