Python center()方法

Python 字符串Python 字符串

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

 

语法

center()方法语法:

str.center(width[, fillchar])

 

参数

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

 

返回值

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

 

实例

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

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

Python 字符串Python 字符串

Python decode() 方法以 encoding 指定的编码格式解码字符串。默认编码为字符串编码。语法:decode()方法语法:str.decode(encoding='UTF-8',errors='strict')。返回值:该方法返回解码后的字符串。