【pandas】怎么把Excel中的两列字段变成字典形式
2017-05-01 本文已影响1044人
成鹏9
本地有个Excel表格,有两列数据,我如何读取到pandas中,并且做成字典的格式。
原始数据 想要的格式test1 = pd.read_excel('路径',sheetname = 'test')
test1.set_index("Id").to_dict()['映射']
本地有个Excel表格,有两列数据,我如何读取到pandas中,并且做成字典的格式。
原始数据 想要的格式test1 = pd.read_excel('路径',sheetname = 'test')
test1.set_index("Id").to_dict()['映射']