目的
实现字符串的左对齐,右对齐,居中对齐。
方法
字符串内置了以下方法:其中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!++