hi,
I just came accross the csv module to deals with csv files in python.
suppose my csv file has two rows:
1,2,3,4
5,6,7,8
and i want to access each item at a time, i.e., 1 followed by 2 and so on....what can be done?
import csv
reader= csv.reader(open('filename.csv','r'),delimiter=' ')
for row in reader:
print row
gives me
[1,2,3,4]
[5,6,7,8]
I want to access a single value at a time