CSV文件结构如下,其中字段A为唯一

Python解析CSV中的多维字典-LMLPHP

代码如下,Python27

 with open(file_obj+'TEST.CSV','r') as f:
#转为字典
Reader=csv.DictReader(f)
#转为列表,列表中多维字典
csvlist1 = list(Reader)
#将A当做为索引
csvlist2 = [row['A'] for row in csvlist1]
#根据A的值找到下标值
n = csvlist2.index(A VALUE)
#根据下标值获取对应的字典
csvlist3 = csvlist1[n]
#根据字典的KEY获取Value
BValue = csvlist3['B']
05-25 20:43