I have the following list of dictionaries in Python3.x:
list_of_dictionaries = [{0:3523, 1:3524, 2:3540, 4:3541, 5:3542},
{0:7245, 1:7246, 2:7247, 3:7248, 5:7249, 6:7250},
{1:20898, 2:20899, 3:20900, 4:20901, 5:20902}]
In this case, it's a single list with three dictionaries.
I would like to efficiently merge this into a single dictionary with lists as values; here is the correct answer:
correct = {0:[3523, 7245], 1:[3524, 7246, 20898], 2:[3540, 7247, 20899],
3:[7248, 20900], 4:[3541, 20901], 5:[3542, 7249, 20902], 6:[7250]}
My first thought was a list comprehension like this:
dict(pair for dictionary in list_of_dictionaries for pair in dictionary.items())
But this is wrong, as it doesn't include lists of values:
{0: 7245, 1: 20898, 2: 20899, 4: 20901, 5: 20902, 3: 20900, 6: 7250}
I'm also worried about how to efficiently as possible create value lists. It may not scale to large lists/large dictionaries either.
How could I accomplish this?
See Question&Answers more detail:
os