Turtle - Moving and Drawing Assignment

From WLCS
Revision as of 23:42, 11 September 2011 by Admin (talk | contribs) (Created page with "'''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 ''...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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. There should not be any lines that connect the shapes to each other. (i.e. lift the pen up)
  6. Demonstrate your program to Mr. Bui