1. What is a Dictionary in Python?
A dictionary is a collection of key-value pairs. It is an unordered, mutable, and indexed collection that is used to store data values like a map.
Key Characteristics:
Unordered: The items in a dictionary are not o...