Python Tips
Python
Python 3
Tips
01. Int to Str leading zeros
Reference Link
no = 1234
value = str(no).zfill(8)
print(value)
# "00001234"
Python
Python 3
Tips
no = 1234
value = str(no).zfill(8)
print(value)
# "00001234"