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
Use:
'00'[len(str(i)):] + str(i)
Or with the math module:
math
import math '00'[math.ceil(math.log(i, 10)):] + str(i)