Creating a dictionary from a csv file?

后端 未结 16 2389
北荒
北荒 2020-11-22 06:13

I am trying to create a dictionary from a csv file. The first column of the csv file contains unique keys and the second column contains values. Each row of the csv file rep

16条回答
  •  生来不讨喜
    2020-11-22 06:36

    import csv
    reader = csv.reader(open('filename.csv', 'r'))
    d = {}
    for row in reader:
       k, v = row
       d[k] = v
    

提交回复
热议问题