Python.Dictionaries (PY.DICT.*)

Contents

iDictionary resources
iData structure review exercises

Objective group FOUND: Foundation concepts: data structures in python

Objective group Objective ID Objective text
FOUND: Foundation concepts PY.DICT.FOUND.1 Create and manipulate small quantities of data in tuples, lists, and dictionaries
PY.DICT.FOUND.2 Process Strings with slicing and built-in methods on String objects

The Python types that we'll review at the start of Python 2:

  1. Numbers
  2. Strings
  3. Lists
  4. Tuples
  5. Dictionaries

Objective group RW: Reading and writing

Objective group Objective ID Objective text
RW: Reading and writing PY.DICT.RW.1 Create, write to, and read from a single dictionary data types in: standalone statements, conditionals, and looping structures
PY.DICT.RW.2 Design and implement nested dictionary structures such that a dictionary oject is stored in the value associated with one or more keys in a parent dictionary object. Demonstrate reading, writing, and updating values in double and multi-leveled nesting dictionaries.