Python menginisialisasi dikt dengan nilai daftar kosong

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