I have a dataframe column which had more than 14 digits, which may sometimes run upto 20 digits.
Issue i'm facing is, once i have read the csv file using pd.read_csv() rows having long numeric values get truncated / rounded off to next number
eg Original row value = 10173555000199
, after reading csv file to pandas, value changed to = 10173600000000
. Not sure why this is happening.
Is there a way to avoid this while reading data through csv file?