pas de notation scientifique python
df["price"].describe().apply(lambda x: format(x, 'f'))
Maxwell
df["price"].describe().apply(lambda x: format(x, 'f'))
num = 5 / 40000000
output = f"{num:.9f}"
print(output)