Python center()方法

Python 字符串 Python 字符串


描述

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

语法

center()方法语法:

str.center(width[, fillchar])

参数

  • width -- 字符串的总宽度。
  • fillchar -- 填充字符。

返回值

该方法返回一个原字符串居中,并使用空格填充至长度 width 的新字符串。

实例

以下实例展示了center()方法的实例:

>>>str = 'Zyiznt' >>> str.center(20, '*') '*******Zyiznt*******' >>> str.center(20) ' Zyiznt ' >>>

Python 字符串 Python 字符串

上一篇:Python capitalize()方法

下一篇:Python count()方法

关注微信小程序
程序员编程王-随时随地学编程

扫描二维码
程序员编程王

扫一扫关注最新编程教程