如何用零填充字符串?
2022-09-05 00:50:43
如何在左侧用零填充数字字符串,以便字符串具有特定长度?
要填充字符串:
>>> n = '4'
>>> print(n.zfill(3))
004
要填充数字:
>>> n = 4
>>> print(f'{n:03}') # Preferred method, python >= 3.6
004
>>> print('%03d' % n)
004
>>> print(format(n, '03')) # python >= 2.6
004
>>> print('{0:03d}'.format(n)) # python >= 2.6 + python 3
004
>>> print('{foo:03d}'.format(foo=n)) # python >= 2.6 + python 3
004
>>> print('{:03d}'.format(n)) # python >= 2.7 + python3
004
只需使用字符串对象的 rjust
方法即可。
此示例创建一个长度为 10 个字符的字符串,并根据需要进行填充:
>>> s = 'test'
>>> s.rjust(10, '0')
>>> '000000test'