python print without scientific notation code example
Example 1: not scientific notation python
df["price"].describe().apply(lambda x: format(x, 'f'))
Example 2: python print do not use scientific notation
num = 5 / 40000000
output = f"{num:.9f}"
print(output)
Example 3: how to display printed values without scientific notation python
>>> a = -7.1855143557448603e-17
>>> '{:f}'.format(a)
'-0.000000'