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

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

Susan Sarandon
发布: 2024-12-27 14:24:10
原创
420 人浏览过

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中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板