Contact: aviboots(AT)netvision.net.il
39,939 questions
51,876 answers
573 users
from collections import Counter c = Counter(a = 5, b = 3, c = 2, d = -3, e = 0) print(c) c += Counter() print(c) ''' run: Counter({'a': 5, 'b': 3, 'c': 2, 'e': 0, 'd': -3}) Counter({'a': 5, 'b': 3, 'c': 2}) '''