center
Python center() 返回一个原字符串居中,并使用空格填充至长度 width 的新字符串。默认填充字符为空格。
语法
center()方法语法:
str.center(width[, fillchar])
参数
- width -- 字符串的总宽度。
- fillchar -- 填充字符。
>>> name = "mike" >>> name.center(40,"-") ‘------------------mike------------------‘ >>>
Posted minger_lcm
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python center() 函数相关的知识,希望对你有一定的参考价值。
center
Python center() 返回一个原字符串居中,并使用空格填充至长度 width 的新字符串。默认填充字符为空格。
center()方法语法:
str.center(width[, fillchar])
>>> name = "mike" >>> name.center(40,"-") ‘------------------mike------------------‘ >>>
以上是关于python center() 函数的主要内容,如果未能解决你的问题,请参考以下文章