python - remove scientific notation code example
Example 1: not scientific notation python
df["price"].describe().apply(lambda x: format(x, 'f'))
Example 2: python - remove scientific notation
import pandas as pd
pd.options.display.float_format = '{:.2f}'.format