标签: python
我想在“测试”中添加键“三”:“ 3”。这可能吗?
现在,它只是用新信息替换“测试”的结果。
答案 0 :(得分:1)
dict.update()不会合并嵌套的字典,它只会更新顶级字典。您需要这样做:
dict.update()
test['test']['three'] = "3"
或
add = {"three": "3"} test['test'].update(add)