What is the name of the turtle in Python?
Tracy
How do we move the Turtle 50 "pixels" forward?
forward(50)
What shape does this code draw?
forward(50)
right(90)
forward(50)
right(90)
forward(50)
right(90)
forward(50)
right(90)
A square
If we want to write comments in Python what can we write as the first character?
"#"
What time is shown?

9:55
What command makes the turtle draw very fast?
speed(0)
Turtle performs the following code:
left(270)
What is a quicker way to have the turtle face the same direction?
right(90)
Time to draw a Square with a loop! Fill in the blank:
for i in range(___):
forward(50)
left(___)
for i in range(4):
forward(50)
left(90)
Repeats code a fixed number of times
a for loop
3/4+1/5=
19/20
If turtle facing west, which command can be used to have her face north?
right(90)
What commands can we use to create 10 circles 10 pixels in radius that are 20 pixels apart?
for i in range(10):
circle(10)
forward(20)
What shape does this draw?
for i in range(3):
forward(50)
left(120)
a triangle
Repeats code as long as the condition is true.
a while loop
How many nickels make $7.50?
150 nickels
Where on the screen does the Turtle start off and what direction does it face?
What are 2 ways that moves Tracy backward 50 units (without setposition or goto)?
1. backward(50)
2. right(180) then forward(50)
3. left(180) then forward(50)
What three commands are used to move Tracy back to the center of the canvas without drawing on the screen and for her to be ready to draw?
1) penup()
2) setposition(0, 0)
3) pendown()
A reusable block of code that executes all of its commands when called
a function
What is the mascot for the NFL team from Chicago?
Bears
Turtle is currently facing north. We call the command
left(135)
Which direction is the turtle facing now?
Southwest
What command will the turtle perform?
count = 5
count = count * 2
if count < 10:
forward(count)
elif count < 20:
backward(count)
else:
circle(count)
backward(10)
What shape does this draw?
for i in range(5):
forward(100)
right(144)
A star!

How many parameters can we use in a function?
Unlimited
What is the name of our current principal?
Ms. Kamper