Is there a way to print the actual value instead of exponential value?
>>> val=0.00004
>>> print(str(val))
4e-05
Is there a way to print the actual value instead of exponential value?
>>> val=0.00004
>>> print(str(val))
4e-05
As posted in here: How do I suppress scientific notation in Python?
print('{0:f}'.format(val))