I am trying to read in an excel file with multiple sheets. But after reading in the sheets i can see python is rounding up values to 2 decimal places.some values vary in different length of decimal places. eg here just wondering how to stop this, I did think this might just have been i visual thing with python, but after writing the files to .xlsx it is the same there aswell. The dtype for the col is float64. Here is how im reading in the file
import pandas as pd
xls = pd.ExcelFile('Data.xls')
LPD = pd.read_excel(xls, 'Landing Page Data')
FI = pd.read_excel(xls, 'Fund Information')
MSCR = pd.read_excel(xls, 'MSC Rates')`