I've read this, this and this posts but despite I don't know why quotechar
does not work at pd.read_csv()
(Python 3, pandas 0.18.0 and 0.18.1). And how could I read a dataframe like this:
"column1","column2", "column3", "column4", "column5", "column6" "AM", 7, "1", "SD", "SD", "CR" "AM", 8, "1,2 ,3", "PR, SD,SD", "PR ; , SD,SD", "PR , ,, SD ,SD" "AM", 1, "2", "SD", "SD", "SD"
I want the following result:
Out[116]: column1 column2 column3 column4 column5 column6 0 AM 7 1 SD SD CR 1 AM 8 1,2 ,3 PR, SD,SD PR ; , SD,SD PR , ,, SD,SD 2 AM 1 2 SD SD SD
Thank you!!