So I have some data in a csv with delimiter=' ' and quotechar=' '. I'm using the python csv package to read it but here's the catch. There is one line that either has some text in a quote, or is just a single quote that is it looks either like this
...
"Some text"
...
or like this
...
"
...
Is there some way I can tell the reader to end quote if it hits a newline?
No comments:
Post a Comment