Too Long; Didn't Read
Python Dictionary is an important way to store data in Python. They let us store information as key-value pairs which are indexed by key name rather than an index. In this guide, we will cover everything you need to know about Python dictionaries. We use curly brackets to define a dictionary, just like in Python sets. We define both keys and values, which is slightly different than sets. You can use the `dict()` function to create a dictionary from variables and update it using the update() function.