Contact: aviboots(AT)netvision.net.il
40,769 questions
53,151 answers
573 users
from collections import Counter c = Counter(a=2, b=0, c=9, d=5, e=-3) d = Counter(a=1, b=2, c=3, d=4, e=5) cd = c + d print(cd) ''' run: Counter({'c': 12, 'd': 9, 'a': 3, 'e': 2, 'b': 2}) '''