这里有很多类似的问题,但我找不到适合我的情况的问题,即使我可以调整一个类似的问题以适合我的情况,但到目前为止我还没有成功。
这是一个简单的问题:
my = [
{'operator': 'SET', 'operand': {'id': '9999', 'name': u'Foo'}},
{'operator': 'SET', 'operand': {'status': 'ACTIVE', 'id': '9999'}}]
我想将字典与常见的 ['operand']['id'] 合并
result = [
{'operator': 'SET', 'operand': {'id': '9999', 'name': u'Foo', 'status': 'ACTIVE'}}]
谢谢!