我有以下字典结构,Iam尝试访问total_payments
字段。这就像访问Python字典中的键的键:
d = {'METTS MARK': {'bonus': 600000,
'deferral_payments': 'NaN',
'deferred_income': 'NaN',
'director_fees': 'NaN',
'email_address': 'a@b.com',
'exercised_stock_options': 'NaN',
'expenses': 94299,
'from_messages': 29,
'from_poi_to_this_person': 38,
'from_this_person_to_poi': 1,
'loan_advances': 'NaN',
'long_term_incentive': 'NaN',
'other': 1740,
'poi': False,
'restricted_stock': 585062,
'restricted_stock_deferred': 'NaN',
'salary': 365788,
'shared_receipt_with_poi': 702,
'to_messages': 807,
'total_payments': 1061827,
'total_stock_value': 585062}}
答案 0 :(得分:1)
很难阅读你的字典,但有一个例子:
dic = {'abc': {'123': '2'}}
print(dic['abc']['123'])
#prints 2
如果你的词典有两个子词典:
dic = {'abc': [{'123': '2'}, {'456': '4'}]}
print(dic['abc'][1]['456'])
# prints 4
在你的情况下:
value['total_payments']
#returns 1061827
答案 1 :(得分:1)
看起来你的词典值是dict,而不是键是dict。 所以你可以按如下方式访问:
your_dict[KEY1]['total_payments']
请同时对您示例中的电子邮件地址进行匿名处理。