Python Turtle Functions

Your goal is this assignment is to write a program that uses functions and a for loop to create repeating shapes using Python Turtle.

Your program should include the following elements:

  1. a function to draw ONE shape that is NOT a square.
  2. a for loop that calls your function to create repeating versions of your shape that don’t overlap. Go for at least four shapes.
  3. fill each shape with a color. HINT: put your fillcolor and begin_fill/end_fill commands above and below the line that calls your function.
  4. give each shape an outline (stroke color) by using the pencolor() command.
  5. use the penup and pendown commands so that the shapes are not stacked on top of each other. It is ok if they overlap.

Click here for the Python Color Chart

Resources: