Python center()方法
Python center()方法
Python center() 返回一個(gè)原字符串居中,并使用空格填充至長度 width 的新字符串。默認(rèn)填充字符為空格。
語法
center()方法語法:
str.center(width[, fillchar])
參數(shù)
- width -- 字符串的總寬度。
- fillchar -- 填充字符。
返回值
該方法返回一個(gè)原字符串居中,并使用空格填充至長度 width 的新字符串。
實(shí)例
以下實(shí)例展示了center()方法的實(shí)例:
>>>str = 'codebaoku' >>> str.center(20, '*') '*****codebaoku******' >>> str.center(20) ' codebaoku ' >>>
相關(guān)文章
- Python 教程
- Python OS 文件/目錄方法
- Python 排序算法
- Python 攤銷分析
- Python3 集合(Set)
- Python3 OS 文件/目錄方法
- Python3 SMTP發(fā)送郵件
- Python min() 函數(shù)
- Python pow() 函數(shù)
- 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()方法