首页 >后端开发 >Python教程 >如何在 Python 中向数字字符串添加前导零?

如何在 Python 中向数字字符串添加前导零?

Susan Sarandon
Susan Sarandon原创
2024-12-27 14:24:10415浏览

How Can I Add Leading Zeros to Numeric Strings in Python?

零填充数字字符串

要向数字字符串添加前导零以增加其长度,Python 中可以采用多种方法:

填充字符串:

对于字符串填充,使用 zfill 方法:

n = '4'
print(n.zfill(3))  # Output: 004

填充数字:

可以使用各种方法垫数字:

  • f 字符串(Python >= 3.6 首选):
n = 4
print(f'{n:03}')  # Output: 004
  • 模运算符:
print('%03d' % n)  # Output: 004
  • 格式函数(Python >= 2.6):
print(format(n, '03'))  # Output: 004
print('{0:03d}'.format(n))  # Output: 004
print('{foo:03d}'.format(foo=n))  # Output: 004
  • format_spec 迷你语言 (Python >= 2.7 Python 3):
print('{:03d}'.format(n))  # Output: 004

有关更多详细信息,请参阅字符串格式化文档。

以上是如何在 Python 中向数字字符串添加前导零?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn