14.1 Examples of Dictionaries in Python

Dictionaries have curly brackets and are a way to store data that needs to be paired together. The paired items in the list can be of any data type: string, integer, float, Boolean, tuples, and even other dictionaries. For example:

Nested Dictionaries (dictionaries within dictionaries) in Python will be covered in CS 30.