Our First Turtle ProgramΒΆ
Let’s write a couple of lines of Python program to create a new
turtle and start drawing a rectangle. (We’ll call the variable that
refers to our first turtle alex, but we can choose another
name if we follow the naming rules from the previous chapter).
(turtles)
We instruct the object alex to move, and to turn. We do this by invoking, or activating, alex‘s methods — these are the instructions that all turtles know how to respond to.
for Loop