center() 方法返回一個用指定字符填充的字符串。
用法:
string.center(width[, fillchar])
參數:
center()
方法有兩個參數:
- width -帶填充字符的字符串的長度
- fillchar(可選)- 填充字符
fillchar
參數是可選的。如果未提供,則將空格作為默認參數。
返回:
center()
方法返回一個用指定的 fillchar
填充的字符串。它不會修改原始字符串。
示例 1:center() 使用默認填充字符的方法
string = "Python is awesome"
new_string = string.center(24)
print("Centered String: ", new_string)
輸出
Centered String: Python is awesome
示例 2:center() 帶有 * fillchar 的方法
string = "Python is awesome"
new_string = string.center(24, '*')
print("Centered String: ", new_string)
輸出
Centered String: ***Python is awesome****
相關用法
- Python String casefold()用法及代碼示例
- Python String count()用法及代碼示例
- Python String capitalize()用法及代碼示例
- Python String Center()用法及代碼示例
- Python String decode()用法及代碼示例
- Python String join()用法及代碼示例
- Python String isalnum()用法及代碼示例
- Python String rsplit()用法及代碼示例
- Python String startswith()用法及代碼示例
- Python String rpartition()用法及代碼示例
- Python String splitlines()用法及代碼示例
- Python String upper()用法及代碼示例
- Python String isprintable()用法及代碼示例
- Python String translate()用法及代碼示例
- Python String title()用法及代碼示例
- Python String replace()用法及代碼示例
- Python String split()用法及代碼示例
- Python String format_map()用法及代碼示例
- Python String zfill()用法及代碼示例
- Python String max()用法及代碼示例
注:本文由純淨天空篩選整理自 Python String center()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。