Turtle Basics
Moving Turtle
Drawing with Turtle
Python!
RANDOM
100

What is the name of the turtle in Python?

Tracy

100

How do we move the Turtle 50 "pixels" forward? 

forward(50)

100

What shape does this code draw? 

forward(50)

right(90)

forward(50)

right(90)

forward(50)

right(90)

forward(50)

right(90)

A square

100

If we want to write comments in Python what can we write as the first character?

"#"

100

What time is shown?

9:55

200

What command makes the turtle draw very fast?

speed(0) 

200

Turtle performs the following code:

left(270)


What is a quicker way to have the turtle face the same direction? 

right(90)

200

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)

200

Repeats code a fixed number of times

a for loop

200

3/4+1/5=

19/20

300

If turtle facing west, which command can be used to have her face north?

right(90)

300

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)

300

What shape does this draw?

for i in range(3):

  forward(50)

  left(120)

a triangle

300

Repeats code as long as the condition is true.

a while loop

300

How many nickels make $7.50?

150 nickels

400

Where on the screen does the Turtle start off and what direction does it face? 

Center and facing right
400

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)

400

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()

400

A reusable block of code that executes all of its commands when called

a function

400

What is the mascot for the NFL team from Chicago?

Bears

500

Turtle is currently facing north. We call the command

left(135)

Which direction is the turtle facing now?

Southwest

500

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)

500

What shape does this draw? 

for i in range(5):

        forward(100)

        right(144)

A star! 

500

How many parameters can we use in a function?

Unlimited

500

What is the name of our current principal?

Ms. Kamper

M
e
n
u