欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python中字符串的ljust、rjust、center方法讲解

程序员文章站 2022-07-14 23:55:02
...

这三种方法的用法差不多:S.ljust(width[, fillchar]),即长度加占位符,默认为空格,这三种在格式化输出时用着非常方便。

>>> a="Hello world"
>>> print a.rjust(20)
'         Hello world'
>>> print a.ljust(20)
'Hello world         '
>>> print a.center(20)
'    Hello world     '
>>> print a.rjust(20,'*')
'*********Hello world'
>>> print a.ljust(20,'*')
'Hello world*********'
>>> print a.center(20,'*')
'****Hello world*****'

转载自:http://wangwei007.blog.51cto.com/68019/1242076

相关标签: python 格式化