Python Print Int em string com estofamento zero
n = '4'
print(n.zfill(3))
# 004
Merwanski
n = '4'
print(n.zfill(3))
# 004