my_dict = {'name': 'Guido', 'year': 1991}
print(my_dict['name'])






What you're seeing is my personal favorite and one of the most fascinating data structure in Python. It’s fast, flexible, and probably the most important data structure in Python. Dictionaries are everywhere. We use them for everything, from simple data storage to making your...