如何在键上合并两个dict列表 - Python?

时间:2017-09-06 13:24:03

标签: python dictionary

我有两个dict列表,我试图合并一个独特的键,但我无法理解如何处理这个问题。

字典1:

A = {'1': [{'A': 'A_1', 'start': 'S'}, {'A': 'A_2', 'start': 'M'}], 
'2': [{'A': 'A_1', 'start': 'S'}, {'A': 'A_2', 'start': 'M'}]}

字典2:

B = {'1': [{'l_1': 'www.l_1', 'l_2': 'www.l_2'}], 
'2': [{'l_1': 'www.myl_1', 'l_2': 'www.myl_2'}]}

我想要实现的目标:

combined = {'1': [{'A': 'A_1', 'start': 'S', 'l_1': 'www.l_1', 'l_2': 'www.l_2'}, {'A': 'A_2', 'start': 'M', 'l_1': 'www.l_1', 'l_2': 'www.l_2'}], 
'2': [{'A': 'A_1', 'start': 'S', 'l_1': 'www.myl_1', 'l_2': 'www.myl_2'}, {'A': 'A_2', 'start': 'M', 'l_1': 'www.myl_1', 'l_2': 'www.myl_2'}]}

以下是我到目前为止编写的代码。但它并没有为我提供理想的结果。

from itertools import chain
from collections import defaultdict

dict3 = defaultdict(list)
for k, v in chain(A.items(), B.items()):
    dict3[k].append(v)

print(dict3)

2 个答案:

答案 0 :(得分:1)

您可以使用itertools.product合并来自相应键的dict值,然后使用Python 3的dict合并语法:

from itertools import product

dct =  {k: [{**d1, **d2} for d1, d2 in product(v, B[k])] 
                                           for k, v in A.items()}

在Python 2中,您可以对产品中的元组应用理解,并从元素构建合并的字典:

dct =  {key: [{k: v for d in tup for k, v in d.items()} 
                  for tup in product(val, B[key])] 
                                 for key, val in A.items()}
{'1': [{'A': 'A_1', 'l_1': 'www.l_1', 'l_2': 'www.l_2', 'start': 'S'},
       {'A': 'A_2', 'l_1': 'www.l_1', 'l_2': 'www.l_2', 'start': 'M'}],
 '2': [{'A': 'A_1', 'l_1': 'www.myl_1', 'l_2': 'www.myl_2', 'start': 'S'},
       {'A': 'A_2', 'l_1': 'www.myl_1', 'l_2': 'www.myl_2', 'start': 'M'}]}

答案 1 :(得分:0)

for i in a:
    if i in b:

        for j in range(min(len(a[i]),len(b[i]))):
            a[i][j]=dict(a[i][j].items()+b[i][j].items()) #re-assign after combining

        if len(b[i])>len(a[i]):       # length case
             for j in range(len(a[i]),len(b[i])):
                  a[i].append(b[i][j])

for i in b:         # if not in a
   if i not in a:
     a[i]=b[i]
print a