a = '6'# 增加到6位a = a.zfill(6)# 此时a为:‘000006’ 上面的代码等效于: num = numbernum = str(num)n = len(num)if n < 6: temp = '0'*(6-n) num = temp + num