Python3 center()方法

Python3 字符串 Python3 字符串

center() 方法返回一個(gè)指定的寬度 width 居中的字符串,fillchar 為填充的字符,默認(rèn)為空格。

語法

center()方法語法:

str.center(width[, fillchar])

參數(shù)

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

返回值

返回一個(gè)指定的寬度 width 居中的字符串,如果 width 小于字符串寬度直接返回字符串,否則使用 fillchar 去填充。

實(shí)例

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

#!/usr/bin/python3

str = "[www.o2fo.com]"

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

以上實(shí)例輸出結(jié)果如下:

str.center(40, '*') :  ************[www.o2fo.com]************

Python3 字符串 Python3 字符串