Python: how to work with dictionaries?

Example:

dictionary = {"name": "John", "age": 30}
Dictionaries are mutable, unordered collections of items.

Solution:

print(dictionary.get("name"))

Beginner's Guide to Python