add n zeros to end of string code example
Example 1: python add zero to string
# add zeros in front of a string
>>> n = '4'
>>> print(n.zfill(3))
004
Example 2: how to append leading zeros in python
str.zfill(width)
# add zeros in front of a string
>>> n = '4'
>>> print(n.zfill(3))
004
str.zfill(width)