Turtle graphics in Python

forward(a_number)

Turtle move forward distance given

backward(a_number)

Turtle move backward distance given

right(degrees)

Turtle turn a number of degrees to the right.

left(degrees)

Turtle turn a number of degrees to the left.

Color("red")

Command to change turtle color. "red", "orange", "yellow", "green", "blue", "indigo", "violet", "black"

shape("turtle") Set the shape of the turtle, "arrow", "turtle", "circle", "square", "triangle", "classic"
setposition(x,y) Move turtle to the given (x,y) position
setx(x) or sety(y) Set just the x or y position of the turtle
home() Return turtle to center of screen
penup() pick up pen (stop drawing)
pendown() put down pen (start drawing)
circle(r) Draw a circle with radius r
dot() Draw a dot

Draw the word "TOE" Write out the steps needed. Make each letter a different color. (without using any set commands)

Write down the big picture plan including criteria and constraints

Write down the specific steps needed for each part