Python инициализируйте DICT с пустыми значениями списка

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