I am facing issue in reading excel column using pandas library. In excel column value is described as "500,000,000.00" but when i read i get value 500000000.
how do I read exact value.
I tried converting cell value to string but it did not work for me
import pandas as pd
strpath = "C:\\Deal.xls"
df=pd.read_excel(strpath,dtype=str)
header = df.columns.tolist()
verificationData=df[header[0]].tolist()
print verificationData
Attaching excel snippet for reference. Excel file screen shot