Skip to content
Advertisement

How to merge dictionaries of dictionaries?

I need to merge multiple dictionaries, here’s what I have for instance:

JavaScript

With A B C and D being leaves of the tree, like {"info1":"value", "info2":"value2"}

There is an unknown level(depth) of dictionaries, it could be {2:{"c":{"z":{"y":{C}}}}}

In my case it represents a directory/files structure with nodes being docs and leaves being files.

I want to merge them to obtain:

JavaScript

I’m not sure how I could do that easily with Python.

Advertisement

Answer

This is actually quite tricky – particularly if you want a useful error message when things are inconsistent, while correctly accepting duplicate but consistent entries (something no other answer here does..)

Assuming you don’t have huge numbers of entries, a recursive function is easiest:

JavaScript

note that this mutates a – the contents of b are added to a (which is also returned). If you want to keep a you could call it like merge(dict(a), b).

agf pointed out (below) that you may have more than two dicts, in which case you can use:

JavaScript

where everything will be added to dict1.

Note: I edited my initial answer to mutate the first argument; that makes the “reduce” easier to explain

Advertisement