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
x = [1, 10, 100] for i in x: print '%02d' % i
results in:
01 10 100
Read more information about string formatting using % in the documentation.