> So rather than
>>a
>>b
>>c
>>d
>>e
>>f
> I would get [a, b, c, d, e, f]

all_items = []
for row in reader:
    all_items.append(row[0])

Skip
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to