简体   繁体   中英

Merge multiple dictionaries when their keys have a list of values Python

I came across a post that had a complete and correct way of merging two dictionaries, when each dictionary has for each key a list of values.

The input of the program is something like this:

d1:  {'apple': ['5', '65'], 'blue': ['9', '10', '15', '43'], 'candle': ['15'], 'is': ['5', '6', '13', '45', '96'], 'yes': ['1', '2', '3', '11'], 'zone': ['5', '6', '9', '10', '12', '14', '18', '19', '23', '24', '25', '29', '45']}
d2:  {'apple': ['43', '47'], 'appricote': ['1', '2', '3', '4', '5', '6'], 'candle': ['1', '2', '4', '5', '6', '9'], 'delta': ['14', '43', '47'], 'dragon': ['23', '24', '25', '26'], 'eclipse': ['11', '13', '15', '19'], 'island': ['1', '34', '35']}

code of merge function is:

def merge_dictionaries(dict1, dict2):

result = {}
new_result = {}
for key in set().union(*(dict1, dict2)):
    result[key] = sorted(dict1.get(key, []) + dict2.get(key, []), key=int)
    # Delete any double value for each key
    new_result[key] = [ii for n, ii in enumerate(result[key]) if ii not in result[key][:n]]

return new_result

With result:

Merged:  {'is': ['5', '6', '13', '45', '96'], 'dragon': ['23', '24', '25', '26'], 'apple': ['5', '43', '47', '65'], 'appricote': ['1', '2', '3', '4', '5', '6'], 'delta': ['14', '43', '47'], 'eclipse': ['11', '13', '15', '19'], 'yes': ['1', '2', '3', '11'], 'zone': ['5', '6', '9', '10', '12', '14', '18', '19', '23', '24', '25', '29', '45'], 'blue': ['9', '10', '15', '43'], 'island': ['1', '34', '35'], 'candle': ['1', '2', '4', '5', '6', '9', '15']}

What I want to achieve now is to extend this way for merging a dynamic number of dictionaries of this kind.This is my try in which I get from the list of "dicts" 2 items each time and try to merge them.

def merge_multiple_dictionaries(dicts):
''' This is just to print the input I get
l = len(dicts)
print("Len of dicts: ", l)
for j in range(0, l):
    print("j is: ", dicts[j])
'''
result = {}
new_result = {}
for k in range(0, l):
     if k is (len(dicts)-1):
        break
    print("k: ", k)
    for key in set().union(*(dicts[k], dicts[k+1])):
        result[key] = sorted(dicts[k].get(key, []) + dicts[k+1].get(key, []), key=int)
        # Delete any double value for each key
        new_result[key] = [ii for n, ii in enumerate(result[key]) if ii not in result[key][:n]]
# result = OrderedDict(sorted([(k, v) for k, v in result.items()]))

return new_result

So is there a more pythonic way to achieve that?

您有一个错字:您用dict表示dicts

There is no need to iterate over pairs of dictionaries, as set().union() operation can take multiple arguments:

def merge_dictionaries(*args):
    result = {}
    for key in set().union(*args):
        # let's convert the value union to set before sorting to get rid of the duplicates
        result[key] = sorted(set.union(*[set(d.get(key, [])) for d in args]), key=int)
    return result

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM