方法center()以长度为一的字符串返回居中。 使用指定的fillchar完成填充。 默认填充符是一个空格。
str.center(width[, fillchar])
width - 这是字符串的总宽度。
fillchar - 这是填充字符。
此方法以长度宽度的字符串为中心返回。
以下示例显示了center()方法的用法。
#!/usr/bin/python
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