在Python中添加哈希表

时间:2015-02-02 17:49:49

标签: python hashtable add

我需要在python中添加两个哈希表。然而," +"不这样做:

d1={1:1}
d2={1:2,2:5}
d3=d1+d2

我需要d3 = {1:3,2:5}。 我很感激任何建议。

1 个答案:

答案 0 :(得分:2)

使用collections.Counter

>>> from collections import Counter
>>> Counter(d1) + Counter(d2)
Counter({2: 5, 1: 3})