Turtle Graphics
Students will...
- be able to write code to import a module and will know what that does.
- 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)
- be able to describe what it means to invoke a method on an object.
- be able to describe what it means for an object to have attributes / properties / state.
- know what an object instance is.
- be able to write code using a for loop (which means they will know the proper syntax).
- be able to describe what iterative flow means, as opposed to sequential flow.
- be able to write python code to use the variable forms of the range() function:
- range(n)
- range(n, m)
- range(n, m, s)