I want to format a number with a decimal point in it with leading zeros.
This
>>> \'3.3\'.zfill(5) 003.3
considers all the dig
print('{0:07.3f}'.format(12.34))
This will have total 7 characters including 3 decimal points, ie. "012.340"