not use scientific notation python 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)