Turtle - Moving and Drawing Assignment

From WLCS

Objectives:

  • After creating this program, the student will be able to:
    • Move the turtle around (x and y directions)
    • Draw with the turtle's pen in different colors

Resources:

Directions:

  1. Open Wing IDE
  2. Create a Python program named shapes
  3. At the top of your program, you should have from turtle import *
  4. Command the turtle to draw the following:
    • Red triangle in the upper left hand corner of the screen
    • Green square in the upper right hand corner of the screen
    • Blue rectangle in the lower right hand corner of the screen
  5. At the end of your program, you should have done()
  6. There should not be any lines that connect the shapes to each other. (i.e. lift the pen up)
  7. Demonstrate your program to Mr. Bui