Turtle Graphics

Students will...

  1. be able to write code to import a module and will know what that does.
  2. be able to write code to access names in the module, as in module.name or module.function().
    (not in the assigned reading: it will be covered in class)
  3. be able to describe what it means to invoke a method on an object.
  4. be able to describe what it means for an object to have attributes / properties / state.
  5. know what an object instance is.
  6. be able to write code using a for loop (which means they will know the proper syntax).
  7. be able to describe what iterative flow means, as opposed to sequential flow.
  8. be able to write python code to use the variable forms of the range() function:
    1. range(n)
    2. range(n, m)
    3. range(n, m, s)