Python Print int en chaîne avec zéro rembourrage

n = '4'
print(n.zfill(3))
# 004
Merwanski