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