Skip to content
Advertisement

Merge multiple key in dictionary with same values inside an array

I need to merge three dictionaries with array values into a single dict based on if they have same values inside the array. The dictionaries is like this:

JavaScript

Then, the output would be like this:

JavaScript

I’ve tried this:

JavaScript

But it only works if the values isn’t a list or array. Any solution?

Advertisement

Answer

Given you use case, you could use itertools.combinations and set intersection:

JavaScript

output:

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement