Here\'s my code:
x = 1.0 y = 100000.0 print x/y
My quotient displays as 1.00000e-05.
1.00000e-05
Is there any way to suppress
If it is a string then use the built in float on it to do the conversion for instance: print( "%.5f" % float("1.43572e-03")) answer:0.00143572
string
float
print( "%.5f" % float("1.43572e-03"))
0.00143572