使用Pandas将excel转换为字典时使用Python的问题

时间:2017-11-30 05:00:48

标签: python excel pandas dictionary

我尝试使用Pandas Library将excel文件转换为python中的字典,如下所示

import pandas as pd

my_dic = pd.read_excel('zoho.xlsx', index_col=0).to_dict)

当我尝试使用键值

从字典中检索值时
print my_dic['Password']

正在使用额外的参数打印数据

{1L: 991253376L} instead of 991253376

如何修剪这些额外的论点。

1 个答案:

答案 0 :(得分:0)

my_dic['Password']也是字典。试试my_dic['Password'][1]

作为一个例子:

my_dic = {"red" : "rot", "green" : "grün", "blue" : "blau", "password":{0:654651054}}

my_dic['password']
Out[27]: {0: 654651054}

my_dic['password'][0]
Out[28]: 6546510