zerofill python code example
Example 1: pad zeros to a string python
my_str='9'
my_str.zfill(2)
Example 2: python zfill
num = "7"
print(num.zfill(2)) # prints "07"
my_str='9'
my_str.zfill(2)
num = "7"
print(num.zfill(2)) # prints "07"