Re: issue with csv module (subject module name spelling correction, too)

2016-03-11 Thread Martin A. Brown
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

Re: Issue with CSV

2007-07-19 Thread Harry George
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

Issue with CSV

2007-07-18 Thread Rohan
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 should appear next to the results of the last run,