Python center()方法

2021-09-04 14:37 更新

Python center()方法


描述

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

語法

center()方法語法:

str.center(width[, fillchar])

參數(shù)

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

返回值

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

實(shí)例

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

#!/usr/bin/python

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

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

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

str.center(40, 'a') :  aaaathis is string example....wow!!!aaaa
以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號