Jan-05-2020, 03:35 PM
I am reading a simple csv file with multiple columns.
One of my column have 2 different values, one is 1.444 and other is 1.908
When I am reading the csv using
i got correct values for 1.444
but for 1.908 I am getting 1.9080000000000001
Why these extra '0's with '1' in the end. How can I avoid this.
One of my column have 2 different values, one is 1.444 and other is 1.908
When I am reading the csv using
1 |
df = pd.read_csv( 'file.csv' ) |
but for 1.908 I am getting 1.9080000000000001
Why these extra '0's with '1' in the end. How can I avoid this.