python文本 字符串对齐

python 字符串对齐

场景:

字符串对齐

python提供非常容易的方法,使得字符串对齐

  >>> print("abc".center (30,'-')) 
  -------------abc--------------                        
  >>>
print("abc".ljust (30)+'|'

  abc                           | 
  >>>
print("abc"
.rjust (30)) 
                             abc 
  >>>  

分别是centerljustrjust

三个方法默认填充是空格,也可以使用其他字符填充

posted @ 2018-01-26 11:58  全威儒  阅读(1099)  评论(0编辑  收藏  举报