Basic Turtle Functions
We control the turtle by giving it instructions. Before we go on - review these basic turtle functions()
Forgot how to make a new turtle?


Want to change the turtle's shape?
#the name of my turtle is shelley
shelley.shape('turtle')

To print the current location (x,y coordinates) of your turtle
print(shelley.xcor(),shelley.ycor())
Last updated