I'm doing some measurements in the lab and want to transform them into some nice Python plots. The problem is the way the software exports CSV files, as I can't find a way to properly read the numbers. It looks like this:
-10;-0,0000026
-8;-0,00000139
-6;-0,000000546
-4;-0,000000112
-2;-5,11E-09
0,0000048;6,21E-09
2;0,000000318
4;0,00000304
6;0,0000129
8;0,0000724
10;0,000268
Separation by ;
is fine, but I need every ,
to be .
.
Ideally I would like Python to be able to read numbers such as 6.21E-09
as well, but I should be able to fix that in excel...
My main issue: Change every ,
to .
so Python can read them as a float.