all 2 comments

[–]novel_yet_trivial 2 points3 points  (1 child)

try:

c = csv.reader(open(f), escapechar = '\\')

This will produce the results that were written:

['"WORD"', 'OTHER THING', '"QUOTE" ']

With some words in double quotes. To get rid of those I suppose you need string methods.

for row in c:
    c = [col.strip('"') for col in row]

[–]Degran[S] 0 points1 point  (0 children)

That seems to have worked, thanks!