How to merge two dictionaries with same key names

dictionary, python

Solution

If you want a merged copy that does not alter the original dicts and watches for name conflicts, you might want to try this solution:

#! /usr/bin/env python3
import copy
import itertools


def main():
    dict_a = dict(a=[1], b=[2])
    dict_b = dict(b=[3], c=[4])
    complete_merge = merge_dicts(dict_a, dict_b, True)
    print(complete_merge)
    resolved_merge = merge_dicts(dict_a, dict_b, False)
    print(resolved_merge)


def merge_dicts(a, b, complete):
    new_dict = copy.deepcopy(a)
    if complete:
        for key, value in b.items():
            new_dict.setdefault(key, []).extend(value)
    else:
        for key, value in b.items():
            if key in new_dict:
                # rename first key
                counter = itertools.count(1)
                while True:
                    new_key = f'{key}_{next(counter)}'
                    if new_key not in new_dict:
                        new_dict[new_key] = new_dict.pop(key)
                        break
                # create second key
                while True:
                    new_key = f'{key}_{next(counter)}'
                    if new_key not in new_dict:
                        new_dict[new_key] = value
                        break
            else:
                new_dict[key] = value
    return new_dict


if __name__ == '__main__':
    main()

The program displays the following representation for the two merged dictionaries:

{'a': [1], 'b': [2, 3], 'c': [4]}
{'a': [1], 'b_1': [2], 'b_2': [3], 'c': [4]}

Problem

I am new to Python and am trying to write a function that will merge two dictionary objects in python. For instance ``` dict1 = {'a':[1], 'b':[2]} dict2 = {'b':[3], 'c':[4]} ``` I need to produce a new merged dictionary ``` dict3 = {'a':[1], 'b':[2,3], 'c':[4]} ``` Function should also take a parameter “conflict” (set to True or False). When conflict is set to False, above is fine. When conflict is set to True, code will merge the dictionary like this instead: ``` dict3 = {'a':[1], 'b_1':[2], 'b_2':[3], 'c':[4]} ``` I am trying to append the 2 dictionaries, but not sure how to do it the right way. ``` for key in dict1.keys(): if dict2.has_key(key): dict2[key].append(dict1[key]) ```

Original source

Related problems