Python center()方法
Python center()方法
Python center() 返回一个原字符串居中,并使用空格填充至长度 width 的新字符串。默认填充字符为空格。
语法
center()方法语法:
str.center(width[, fillchar])
参数
- width -- 字符串的总宽度。
- fillchar -- 填充字符。
返回值
该方法返回一个原字符串居中,并使用空格填充至长度 width 的新字符串。
实例
以下实例展示了center()方法的实例:
>>>str = 'codebaoku' >>> str.center(20, '*') '*****codebaoku******' >>> str.center(20) ' codebaoku ' >>>
相关文章
- Python 教程
- Python OS 文件/目录方法
- Python 排序算法
- Python 摊销分析
- Python3 集合(Set)
- Python3 OS 文件/目录方法
- Python3 SMTP发送邮件
- Python min() 函数
- Python pow() 函数
- Python File truncate() 方法
- Python os.close() 方法
- Python os.pathconf() 方法
- Python os.rename() 方法
- Python os.rmdir() 方法
- Python os.path() 模块
- Python decode()方法
- Python min()方法
- Python splitlines()方法
- Python 字典 Dictionary cmp()方法
- Python 字典 Dictionary fromkeys()方法