I am having a problem with the data I have collected. When I write the data to a file it is shown like this.
(231.2314,32434.344,134.2342,345.345,1234.45)
(2323.567,32.6754,12323.8776,12323.575,233.5673)
now when I read data and put it in a list it looks like this.
data = ['(231.2314,32434.344,134.2342,345.345,1234.45)
\n','(2323.567,32.6754,12323.8776,12323.575,233.5673)\n']
is there any way i can just retrieve the floats from the file. When I try to convert to float I get an error about '(' is not a float. Can someone point me into the right direction. I have attached the data. Thanks.