Python center() 方法通過填充字符串左右兩側的填充將字符串對齊到中心。此方法有兩個參數,第一個是寬度,第二個是可選的 fillchar。 fillchar 是一個字符,用於填充字符串的左右填充。
簽名
center(width[,fillchar])
參數
- width(必填)
- fillchar(可選)
返回類型
它返回修改後的字符串。
Python String Center() 方法示例1:默認填充字符
在這裏,我們沒有傳遞第二個參數。默認情況下,它需要空格。
# Python center() function example
# Variable declaration
str = "Hello Javatpoint"
# Calling function
str2 = str.center(20)
# Displaying result
print("Old value:", str)
print("New value:", str2)
輸出:
Old value:Hello Javatpoint New value: Hello Javatpoint
Python 字符串 Center() 方法示例 2
在這裏,我們將填充字符(可選)參數提供為 #。請參閱示例。
# Python center() function example
# Variable declaration
str = "Hello Javatpoint"
# Calling function
str2 = str.center(20,'#')
# Displaying result
print("Old value:", str)
print("New value:", str2)
輸出:
Old value:Hello Javatpoint New value:##Hello Javatpoint##
Python 字符串 Center() 方法示例 3
# Python center() function example
# Variable declaration
str = "Hello Javatpoint"
if str == "Hell0 Javatpoint":
str2 = str.center(20,'#')
else:
str2 = str.center(20,'!')
# Displaying result
print("Old value:", str)
print("New value:", str2)
輸出:
Old value:Hello Javatpoint New value:!!Hello Javatpoint!!
相關用法
- Python String Count()用法及代碼示例
- Python String Casefold()用法及代碼示例
- 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 Center() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。