I need a print function that writes Loop i / round
, where both values i
and round
have to have at least four digits (12 -> 0012)
. It must have the format-method too.
I found the paste formatC and other ways to add leading zeroes but I can't make them work for this case..
It needs to be like this:
print('Loop {} / {}'.format('i', 'round'))
But with four digit numbers as I said.
a_number is 12. zero_filled_number will give you 0012