I have tried to add multiple csv files. I have followed the below link. how to merge 200 csv files in Python
import pandas as pd
combined_csv = pd.concat( [ pd.read_csv(f) for f in filenames ] )
combined_csv.to_csv( "combined_csv.csv", index=False )
But my values changed from
49.108,55.738,30.106
41.681,54.896,32.99
to
49.108000000000004,55.738,30.105999999999998
41.681000000000004,54.896,32.99
How to prevent this?
Thanks in advance