Python inicializa el dict con valores de lista vacíos

from collections import defaultdict
data = defaultdict(list)
data[1].append('hello')
bougui