Skip to main content\(
\newcommand{\lt}{<}
\newcommand{\gt}{>}
\newcommand{\amp}{&}
\definecolor{fillinmathshade}{gray}{0.9}
\newcommand{\fillinmath}[1]{\mathchoice{\colorbox{fillinmathshade}{$\displaystyle \phantom{\,#1\,}$}}{\colorbox{fillinmathshade}{$\textstyle \phantom{\,#1\,}$}}{\colorbox{fillinmathshade}{$\scriptstyle \phantom{\,#1\,}$}}{\colorbox{fillinmathshade}{$\scriptscriptstyle\phantom{\,#1\,}$}}}
\)
Section 10.7 Glossary
Glossary Glossary
- Dictionary
-
A mapping from a set of keys to their corresponding values.
- Hashtable
-
The algorithm used to implement Python dictionaries.
- Hash function
-
A function used by a hashtable to compute the location for a key.
- Histogram
-
A set of counters.
- Implementation
-
A way of performing a computation.
- Dictionary Item
-
Another name for a key-value pair.
- Key
-
An object that appears in a dictionary as the first part of a key-value pair.
- Key-value pair
-
The representation of the mapping from a key to a value.
- Lookup
-
A dictionary operation that takes a key and finds the corresponding value.
- Nested loops
-
When there are one or more loops “inside” of another loop. The inner loop runs to completion each time the outer loop runs once.
- Dictionary Value
-
An object that appears in a dictionary as the second part of a key-value pair. This is more specific than our previous use of the word “value”.
Checkpoint 10.7.1.
Checkpoint 10.7.2.
Checkpoint 10.7.3.