Dictionaries
Dictionaries data structure associates values with keys. The keys allows the quick retreival of values.
Definition
Access
Modification
Iterators
defaultdict
The defaultdict structure allows creating a dictionary where in the event that a key does not exist, the defaultdict would add a new key with the default value passed as its parameter.