[Solved] How can I round long decimal numbers into 0.00 format [duplicate]


You can get rid of the exponential form with this:

a=3.8485341e-06
'{0:.20f}'.format(a)

or this

print("%.20f" % a)

solved How can I round long decimal numbers into 0.00 format [duplicate]