创建一个字典,其中键是字典中的键,值是嵌套字典中另一个键的值

时间:2020-10-03 23:57:16

标签: python python-3.x dictionary

我正在寻找一个嵌套字典中键为default.conf且值为store的字典。我希望它输出带有键和值store_type的字典:store

我已经尝试过,但是在没有得到类型或属性错误的情况下无法返回store_typestore

store_type

下面的示例代码

def get_store(large_dict):
    for i in large_dict:
        name = i["store"]
        party = i["store_type"]

1 个答案:

答案 0 :(得分:1)

for i in large_dict:的作用是什么?我很难告诉这个问题的标题,但看来您只想做这样的事情。

new_dict = {}

for order in large_dict["previous_orders"]:
    store = order["store"]
    store_type = order["store_type"]
    new_dict[store] = store_type