Switch off scientific notation in pandas
By default pandas uses scientific notation to display large numbers of data type float, ie. numbers with a decimal point (known as a floating point).
Most people find conventional notation easier to scan, so will want to switch.
An example from this answer on StackOverflow shows that you can do this with the following code:
pd.options.display.float_format = '{:.2f}'.format