當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python String center方法用法及代碼示例


Python 的 String.center(~) 方法返回一個用指定字符左右填充的字符串。請注意,原始字符串沒有被修改。

參數

1.width |數字

字符串的長度,包括填充字符。

2. fillchar |字符串| optional

用作填充的字符。默認情況下,fillchar=" "(即單個空格)。

返回值

字符串用指定字符左右填充。

例子

基本用法

string = 'Welcome to SkyTowner'
padded_string = string.center(30,'*')
print(padded_string)



*****Welcome to SkyTowner*****

相關用法


注:本文由純淨天空篩選整理自Isshin Inada大神的英文原創作品 Python String | center method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。