python 数字字符补位

test = '3'
print(test.zfill(2))

03

test = '3'
print(test.zfill(8))

00000003

你可能感兴趣的:(python 数字字符补位)