python center() 函数

Posted minger_lcm

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python center() 函数相关的知识,希望对你有一定的参考价值。

 

center

Python center() 返回一个原字符串居中,并使用空格填充至长度 width 的新字符串。默认填充字符为空格。

语法

center()方法语法:

str.center(width[, fillchar])

参数

  • width -- 字符串的总宽度。
  • fillchar -- 填充字符。
>>> name = "mike"
>>> name.center(40,"-")


------------------mike------------------
>>>

 

以上是关于python center() 函数的主要内容,如果未能解决你的问题,请参考以下文章

Python内的center函数

Python:str.ljust()str.rjust()str.center()函数

如何在android中的地图片段内中心线性布局?

13 个非常有用的 Python 代码片段

jQuery应用 代码片段

在 Python 多处理进程中运行较慢的 OpenCV 代码片段