dict = {}for i in range(1,6): if i not in dict: dict[i] = [] for j in range(101,106): dict[i].append(j)print(dict)