Python print int в строке с нулевой прокладкой

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