python how to print without e-10 code example
Example 1: python suppress exponential notation
pd.set_option('display.float_format', lambda x: '%.3f' % x)
Example 2: python print do not use scientific notation
num = 5 / 40000000
output = f"{num:.9f}"
print(output)