How do you use a list inside a dictionary?
A dictionary key can be associated with a list of values.
How do you work with a list that's stored in a dictionary?
When you loop through the items, each value will be a list. To do this, nest a for loop for the list inside a for loop for the dictionary.