for x in range(1, 11):
print("%02d"%x, end=" ")
it is not a problem but it is just a curiosity:
how come the numbers 08 and 09 are colored in white?
is a simple print in a For loop, formatting in string with 0
is there a specific reason? thanks.