最佳答案
如何在Python中向现有字典中添加项?例如,给定:
default_data = {
'item1': 1,
'item2': 2,
}
我想增加一个新项目,这样:
default_data = default_data + {'item3': 3}