Python-如何合并列表中存在的多个词典

时间:2018-07-27 20:25:43

标签: python python-3.x

我的代码中有一个包含多个词典的列表(目前我有特定数量的词典,但是我需要该程序才能处理n个词典)。 / p>

例如,假设我有3个字典来简化:

我所拥有的:

my_list = [{'a': 1, 'b': 2, 'c': 3}, {'b':4, 'c': 5, 'd': 6}, {'c':7, 'd': 8, 'e': 9}]

我需要什么:

my_list = [{'a': 1, 'b': 6, 'c': 15, 'd': 14, 'e': 9}]

my_list = {'a': 1, 'b': 6, 'c': 15, 'd': 14, 'e': 9}

(基本上是同一回事,不是吗?)

谢谢您的帮助!

1 个答案:

答案 0 :(得分:3)

使用sum()collections.Counter

In [90]: sum(map(Counter, my_list), Counter())
Out[90]: Counter({'a': 1, 'b': 6, 'c': 15, 'd': 14, 'e': 9})

另请参阅https://stackoverflow.com/a/42717000/2867928