Dictionaries are unordered collections of key-value pairs. Think of them like real dictionaries where you look up a word (key) and get its definition (value).
Here's how to create a simple dictionary and print it.
Access dictionary values by their keys and add new key-value pairs.
Loop through keys and values using a for loop.
dict.keys(), dict.values(), and dict.items() to work efficiently with dictionaries.