Among the built-in python data types is a very versatile type called a dictionary.
Dictionaries are simply another type of collection in python, but with a twist.
A dictionary is a set of unordered key-value pairs. In a dictionary, the keys must be unique, and they are stored in an unordered manner.
Dictionaries are containers that associate keys to values. Dictionaries are mutable.