Инициализировать словарь до нуля в Python

from collections import defaultdict

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