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
With newer versions of Python (2.6 and later), you can use ''.format() to accomplish what @SilentGhost suggested:
'{0:f}'.format(x/y)