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