How do I get an integer to fill 0\'s to a fixed width in python 3.2 using the format attribute? Example:
a = 1 print(\'{0:3}\'.format(a))
gives
Better:
number=12 print(f'number is equal to {number:03d}')