Let's say I have the following float point number in Python
>>>a = 10 ** -10
>>>print a
1e-10
How can I display .0000000001 instead of 1e-10?
>>> a = "%0.10f" % (10 ** -10)
>>> a
'0.0000000001'
"%0.10f" % (10 ** -2) it will print 0.0100000000.0.0100000000 is not the same than 0.0100000000.