零填充數字字串
要將前導零添加到數字字串以增加其長度,Python 中可以採用多種方法:
填充字串:
對於字串填充,使用 zfill方法:
n = '4' print(n.zfill(3)) # Output: 004
填充數字:
可以使用各種方法墊數字:
n = 4 print(f'{n:03}') # Output: 004
print('%03d' % n) # Output: 004
print(format(n, '03')) # Output: 004 print('{0:03d}'.format(n)) # Output: 004 print('{foo:03d}'.format(foo=n)) # Output: 004
print('{:03d}'.format(n)) # Output: 004
以上是如何在 Python 中為數字字串新增前導零?的詳細內容。更多資訊請關注PHP中文網其他相關文章!