Initialisieren Sie das Wörterbuch in Python auf Null

from collections import defaultdict

my_dict = defaultdict(int)
my_dict[1] += 1
Unusual Unicorn