I have a csv file that contains the following values
"Spam2,pank",Spam3,Spam6,Spam7
Spam1,Spam5,Spam0,Spam9
And i am using the following python code to read a particular column
for line in open('D:\eggs2.csv','rb'):
columns = line.split(",")
print columns[0]
The output it gives is:-
"Spam2
Spam1
while i am expecting :
Spam2,pank
Spam1
Please Help me out on this.