I have a data frame with 8 columns. However the rows contain several types of separators. The example below show an example of the rows that I have in my Data Frame where numbers are put between ''
in order to not consider ,
as a separator
Germany,'3,459','12,993',96.6,'3,026,180','11,094,446',66.4,9.3
That's the code that I used to read my DataFrame
data=pd.read_csv("Data.csv",sep=',',engine='python')
The problem is I couldn't read my Data Frame and I get an error that tells me
Expected 11 fields in line 6, saw 14