For example given the following csv
ID, type
1 , A
2 , B
3 , C
it should generate a dictionary that looks like this
{'1':A, '2':B, '3':C}
Here's what I have so far, but its's associating the entire column into 1 dictionary
import csv
reader = csv.DictReader(open('TIS_annotation.csv'))
result = {}
for row in reader:
for column, value in row.iteritems():
result.setdefault(column, []).append(value)
print result