专注于高品质PHP技术等信息服务于一体 [STIEMAP] [RSS]

百度提供的广告:
python
当前位置:首页 > 技术文档 > python >  > 
python 中str format 格式化数字补0方法
>>> "{0:03d}".format(1)
'001'
>>> "{0:03d}".format(10)
'010'
>>> "{0:03d}".format(100)
'100'