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
Another option, if you are using pandas and would like to suppress scientific notation for all floats, is to adjust the pandas options.
import pandas as pd pd.options.display.float_format = '{:.2f}'.format