方法1:zfill()函数
Python中有一个zfill函数用来给字符串前面补0,非常有用,这个zfill看起来也就是zero fill的缩写。
n = "123"
s = n.zfill(5)
assert s == '00123'
方法2:格式化
对于纯数字也可以通过格式化的方式来补0:
n = 123
s = '%05d' % n
assert s == '00123'
方法1:zfill()函数
Python中有一个zfill函数用来给字符串前面补0,非常有用,这个zfill看起来也就是zero fill的缩写。
n = "123"
s = n.zfill(5)
assert s == '00123'
方法2:格式化
对于纯数字也可以通过格式化的方式来补0:
n = 123
s = '%05d' % n
assert s == '00123'