4
Question Question 4
What all types of values can you store in :
- dictionary-values ?
- dictionary-keys ?
- Dictionary values can be all the data types of Python including collections and sequences.
- Dictionary keys must be of immutable types like a string, a number, a tuple (containing only immutable entries).