Can a Dictionary  have  multiple values  for a Key  in Python?

Python

Interview Question

A Python Dictionary stores the items as key value pairs. Where each key as one value associated with it.

To link multiple values with one key in Dictionary, we need to associate an object with each key as value.

Use a tuple or a list as a value in the dictionary to associate multiple values with a key.

A dictionary with a list as the value for each key. This dictionary has multiple values for each key.