A .csv file looks like this
col1, col2, col3
"a, b, c"
"d, e, f"
and I want to unwrap the rows from the quotation marks to read the file in pandas/Python correctly. As stated in this duplicate question in R, one could read the .csv data twice: 1) unwrap the data in the first column of an auxiliary dataframe and 2) recall the read function on the first column of the auxiliary dataframe.
What is the most elegant way of doing this in pandas?