這篇文章主要介紹了Python中字符串對齊方法介紹,本文介紹Python字符串內置方法ljust、rjust、center的用法,需要的朋友可以參考下
目的
實現字符串的左對齊,右對齊,居中對齊。
方法
字符串內置了以下方法:其中width是指包含字符串S在內的寬度,fillchar默認是空格,也可以指定填充字符
代碼如下:
string.ljust(s, width[, fillchar])
string.rjust(s, width[, fillchar])
string.center(s, width[, fillchar])
代碼如下:
In [6]: a='Hello!'
In [7]: print a.ljust(10,'+')
Hello!++++
In [8]: print a.rjust(10,'+')
++++Hello!
In [9]: print a.center(10,'+')
++Hello!++