Dictionary

Learn about dictionary in Python. You will become familiar with how to create a dictionary, query value of a key, update a dictionary, and how to delete elements.

We'll cover the following...

The dictionary is a set of key-value pairs. The keys of the dictionary are unique and unordered, meaning that the key storage does not have any order.

Creating a dictionary

The Python dictionary can be created ...