How to create a dictionary with default values in Python

1 Answer

0 votes
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

'''

 



answered Dec 16, 2024 by avibootz
...