Good afternoon Fillmore,
import csv
s = '"Please preserve my doublequotes"\ttext1\ttext2'
reader = csv.reader([s], delimiter='\t')
> How do I instruct the reader to preserve my doublequotes?
Change the quoting used by the dialect on the csv reader instance:
reader = csv.reader
Rohan <[EMAIL PROTECTED]> writes:
> Hello,
> I'm working on a script which collects some data and puts into a csv
> file which could be exported to excel.
> so far so good, I'm able to do what I described.
> When I run the script for the second time after a certain period of
> time the results sho