Log in
Sign up for FREE
arrow_back
Library

Programming with Python, Tracy the Turtle

star
star
star
star
star
Last updated almost 6 years ago
5 questions
Note from the author:
1
1
1
1
1
A quick review of some Python concepts using Tracy the Turtle.

The next several questions will relate to the image below.
Question 1
1.

Question 2
2.

Question 3
3.

Draw the path that Tracy will take on this canvas. This will help you get a better idea about far Tracy will move.

Question 4
4.

Write a program that will make Tracy follow the path. Use the guide you just created to help you.
Remember to triple-check your spelling, punctuation and other super important details like that!

Question 5
5.

BONUS QUESTION:
Let's imagine we want Tracy to draw an octogon on the canvas. Do these 2 things:
  1. Write a mathematical equation that will help us figure out how many degrees Tracy will need to turn at each corner.
  2. Write a program that will make Tracy draw the octogon, using the information you gained from the equation.

The image above is a path for Tracy to follow. Which of the following codes would get Tracy to the starting position?
forward (200)
backward (200)
forward (100)
backward (100)
Which of the following codes would also get Tracy to the starting position?
setposition(0,200)
setposition(200,0)
setposition(0,-200)
setposition(-200,0)