精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

Python center()方法

Python center()方法

Python 字符串Python 字符串

Python center() 返回一個(gè)原字符串居中,并使用空格填充至長度 width 的新字符串。默認(rèn)填充字符為空格。

 

語法

center()方法語法:

str.center(width[, fillchar])

 

參數(shù)

  • width -- 字符串的總寬度。
  • fillchar -- 填充字符。

 

返回值

該方法返回一個(gè)原字符串居中,并使用空格填充至長度 width 的新字符串。

 

實(shí)例

以下實(shí)例展示了center()方法的實(shí)例:

>>>str = 'codebaoku'
>>> str.center(20, '*')
'*****codebaoku******'
>>> str.center(20)
'     codebaoku      '
>>>

Python 字符串Python 字符串

下一節(jié):Python decode()方法

Python 教程

相關(guān)文章