I have an excel file produced automatically with occasional very large numbers like 135061808695
. In the excel file when you click on the cell it shows the full number 135061808695
however visually with the automatic "General" format the number appears as 1.35063E+11
.
When I use ExcelFile
in Pandas the it pulls the value in scientific notation 1.350618e+11
instead of the full 135061808695
. Is there any way to get Pandas to pull the full value without going in an messing with the excel file?
1.35063e+11
doesn't mean there isn't more precision stored. Print out with a format like15.0f
to check. – Sneer