Python Print int in String mit Null Polsterung
n = '4'
print(n.zfill(3))
# 004
Merwanski
n = '4'
print(n.zfill(3))
# 004