center()方法返回一個(gè)原字符串居中,并使用空格填充至長度 width 的新字符串。
center()方法的語法為:
string.center(width[, fillchar])
center()方法采用兩個(gè)參數(shù):
width- 填充后字符串的長度
fillchar (可選)-填充字符
fillchar參數(shù)是可選的。如果未提供,則將空格作為默認(rèn)參數(shù)。
center()方法返回一個(gè)字符串,其中填充了指定的fillchar。它不會修改原始字符串。
string = "Python is awesome" new_string = string.center(24) print("填充后的字符串: ", new_string)
運(yùn)行該程序時(shí),輸出為:
填充后的字符串: Python is awesome
string = "Python is awesome" new_string = string.center(24, '*') print("填充后的字符串: ", new_string)
運(yùn)行該程序時(shí),輸出為:
填充后的字符串: ***Python is awesome****