Ajouter zéro devant les nombres inférieurs à 10 Python
print(f"{x:02}") # where x is the integer
Elated Eel
print(f"{x:02}") # where x is the integer