零填充数字字符串
要向数字字符串添加前导零以增加其长度,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中文网其他相关文章!