python 中str format 格式化數字補0方法

 

>>> "{0:03d}".format(1)
'001'
>>> "{0:03d}".format(10)
'010'
>>> "{0:03d}".format(100)
'100'3d

相關文章
相關標籤/搜索