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.
-
- 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β.
Activity 10.7.1.
Activity 10.7.2.
Activity 10.7.3.
You have attempted
of
activities on this page.