Python3 string.center()方法

2019-10-16 23:10:50
center() 方法返回在長度寬度居中的字串。填充是使用指定 fillchar 完成。預設 filler 是一個空格。

語法

str.center(width[, fillchar])

引數

  • width -- 這是字串的總寬度

  • fillchar -- 這是填充符

返回值

此方法返回一個字串,至少是 width 字元寬度, 通過用填充字元fillchar來建立字串(預設為空格)

範例

下面的範例演示 center() 方法的使用。
#!/usr/bin/python3

str = "this is string example....wow!!!"

print ("str.center(40, 'a') : ", str.center(40, 'a'))

結果

str.center(40, 'a') :  aaaathis is string example....wow!!!aaaa