标签: python hashtable add
我需要在python中添加两个哈希表。然而," +"不这样做:
d1={1:1} d2={1:2,2:5} d3=d1+d2
我需要d3 = {1:3,2:5}。 我很感激任何建议。
答案 0 :(得分:2)
使用collections.Counter:
collections.Counter
>>> from collections import Counter >>> Counter(d1) + Counter(d2) Counter({2: 5, 1: 3})