按嵌套键合并字典列表

时间:2013-10-29 16:14:12

标签: python

这里有很多类似的问题,但我找不到适合我案例的问题,即使我可能调整一个类似的问题来解决我的问题,到目前为止我还没有成功。

这是一个简单的问题:

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'}}]

谢谢!

2 个答案:

答案 0 :(得分:1)

这似乎是一个相当容易的问题,通过一些实验你应该能够做到这一点:)

这是我的版本,但有很多方法可以解决问题:

def merge(x):
    out = {}
    for y in x:
        id_ = y['operand']['id']
        if id_ not in out:
            out[id_] = y
        else:
            out[id_]['operand'].update(y['operand'])

    return out.values()

答案 1 :(得分:0)

Heres是我的,也许是有用的......

my = [ {'operator': 'SET',
    'operand': {'id': '9999', 'name': u'Foo'} }, 
   {'operator': 'SET',
    'operand': {'status': 'ACTIVE', 'id': '9999'} }   ]

def merge(mylist):
    res_list = [{}]
    tmp_dict = {}
    for mydict in mylist:        
        for k in mydict.keys():
            if type(mydict[k]) == dict:
                for k2 in mydict[k]:
                    if k2 not in tmp_dict.keys():
                        tmp_dict[k2] = mydict[k][k2]
                res_list[0][k] = tmp_dict                            
            else:
                res_list[0][k] = mydict[k]

    return res_list

print f(my)
>>> 
[{'operator': 'SET', 'operand': {'status': 'ACTIVE', 'id': '9999', 'name': u'Foo'}}]