Lesson 1

Importing our Turtle


Just like in Project 1, we will be using the Turtle to help us draw some cool shapes.

The first thing we will need to do is import our Turtle directory. on line 2 add from turtle import *

Now we will set up a variable so that our turtle is a little easier to use. On line 5 add the following code t=Turtle()