是否可以将信息插入字典?

时间:2019-11-07 22:22:03

标签: python

enter image description here

enter image description here

我想在“测试”中添加键“三”:“ 3”。这可能吗?

现在,它只是用新信息替换“测试”的结果。

1 个答案:

答案 0 :(得分:1)

dict.update()不会合并嵌套的字典,它只会更新顶级字典。您需要这样做:

test['test']['three'] = "3"

add = {"three": "3"}
test['test'].update(add)