Given:
a = 1 b = 10 c = 100
How do I display a leading zero for all numbers with less than two digits?
This is the output I\'m expe
print('{:02}'.format(1)) print('{:02}'.format(10)) print('{:02}'.format(100))
prints:
01 10 100