Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.

Well done!

You have completed (UPI) Chapter 12: Mastering Python Dictionaries!

Instruction

Nested Dictionaries

As described before, Python dictionaries are a type of data structure that allows for storing data in key-value pairs. Nested dictionaries are dictionaries that are stored as values within another dictionary.

Example: An Organizational Chart

For instance, keys could be different departments, and values could be dictionaries of employees in a given department. To store employee informa...