I'm trying to load in a xlsx file on python, but I am finding that some of the values are inaccurate. I am aware that using Decimal is more accurate, but I find that the raw value given from the dataset is inaccurate. This is the row from the xlsx file with the problem value highlighted. And this is the output when I pull that value from the dataframe. This is how I loaded the data
import pandas as pd
data = pd.read_excel(r'A:\Deakin\Crypto\Export Trade History-2021-07-02 10_40_25.xlsx')
df = pd.DataFrame(data)
And this is the value when I print the dataframe. I'm pretty flexible in how the file gets loaded and held in the program, i.e if there's something better than pandas to read and store in a data frame, I'm all ears