python eliminate scientific notation in numbers code example
Example 1: python suppress exponential notation
pd.set_option('display.float_format', lambda x: '%.3f' % x)
Example 2: python - remove scientific notation
import pandas as pd
pd.options.display.float_format = '{:.2f}'.format