Pythoncenter()居中填充
Posted Alkaid:
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Pythoncenter()居中填充相关的知识,希望对你有一定的参考价值。
center() 返回一个原字符串居中,并使用空格填充至长度 width 的新字符串。默认填充字符为空格。
center()方法语法:str.center(width[, fillchar])
- width – 字符串的总宽度。
- fillchar – 填充字符。
不提供 char 参数则默认为空格
>>> s = "happy"
>>> s.center(9)
' happy '
当 width 参数小于等于原字符串的长度时,原样返回
>>> s = "happy"
>>> s.center(3)
'happy'
无法使左右字符数相等时候:
字符串字符数为奇数时左侧字符会比右侧少 1
>>> b = "happy"
>>> b.center(8,"*")
'*happy**'
字符串字符数为偶数时左侧字符会比右侧多 1
>>> a = "good"
>>> a.center(7,"*")
'**good*'
以上是关于Pythoncenter()居中填充的主要内容,如果未能解决你的问题,请参考以下文章