from collections import defaultdict
ddict = defaultdict(int)
print(ddict)
ddict['key1'] += 11
ddict['key2'] += 22
print(ddict)
for key, value in ddict.items():
print(key, value)
'''
run:
defaultdict(<class 'int'>, {})
defaultdict(<class 'int'>, {'key1': 11, 'key2': 22})
key1 11
key2 22
'''