On Mar 27, 1:53 pm, "Gabriel Genellina" <[EMAIL PROTECTED]>
wrote:
> En Thu, 27 Mar 2008 17:37:33 -0300, Aaron Watters
> <[EMAIL PROTECTED]> escribió:
>
>
>
> >> "this";"is";"a";"test"
>
> >> Resulting in an output of:
>
> >> ['this', 'is', 'a', 'test']
>
> >> However, if I modify the csv to:
>
>
Hello,
I am trying to read a csv file. I have the following functioning
code:
BEGIN
import csv
reader = csv.reader(open("test.csv", "rb"), delimiter=';')
for row in reader:
print row
END
This code will successfully parse my csv file formatted as such:
"this";"is";"a";"t