您的位置: 首页 > IT文章 > python 中str format 格式化数字补0方法 python 中str format 格式化数字补0方法 分类: IT文章 • 2025-01-01 09:07:19 >>> "{0:03d}".format(1)'001'>>> "{0:03d}".format(10)'010'>>> "{0:03d}".format(100)'100'