python 字符串长度补齐_Python补齐字符串长度的实例

Python补齐字符串长度的实例

如下所示:

ljust(len,str)字符向左对齐,用str补齐长度

rjust(len,str)字符向右对齐,用str补齐长度

rjust(len,str)字符中间对齐,用str补齐长度

print 'bbb'.ljust(10,'a')

输出:bbbaaaaaaa

print 'bbb'.rjust(10,'a')

输出:aaaaaaabbb

print 'bbb'.center(10,'a')

输出:aaabbbaaaa

zfill(width)指定字符串长度,右对齐,前面补充0

print '2'.zfill(5)

输出:00002

以上这篇Python补齐字符串长度的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持我们。

时间: 2018-11-15

本文实例讲述了Python实现简单文本字符串处理的方法.分享给大家供大家参考,具体如下: 对于一个文本字符串,可以使用Python的string.split()方法将其切割.下面看看实际运行效果. mySent = 'This book is the best book on python!' print mySent.split() 输出: ['This', 'book', 'is', 'the', 'best', 'book', 'on

你可能感兴趣的:(python,字符串长度补齐)