Description : A data structure to store key-value pairs.
Answer :
A Python dictionary is a data structure that stores key-value pairs in a single variable. Dictionaries are unordered, mutable, and allow duplicate values. They are commonly used to store data with named fields and can be accessed using bracket notation.