4.8. A Few More turtle Methods and Observations

Here are a few more things that you might find useful as you write programs that use turtles.

Let’s do an example that shows off some of these new features.

The list of integers printed above for list(range(5,60,2)) is only displayed to show you the distances being used to move the turtle forward. The actual use appears as part of the for loop.

One more thing to be careful about. All except one of the shapes you see on the screen here are footprints created by stamp. But the program still only has one turtle instance — can you figure out which one is the real tess? (Hint: if you’re not sure, write a new line of code after the for loop to change tess’ color, or to put her pen down and draw a line, or to change her shape, etc.)

Mixed up program

Mixed up program

Lab

  • Turtle Race In this guided lab exercise we will work through a simple problem solving exercise related to having some turtles race.

You have attempted of activities on this page