Jak prefiks liczby z zero w Pythonie
print(f"{n:02}")
#wherein, if n is a single digit, it will be prefixed with one 0
Inquisitive Ibex
print(f"{n:02}")
#wherein, if n is a single digit, it will be prefixed with one 0