Wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Python Turtle Review

Total questions: 17

Worksheet time: 9mins

Name
Class
Date
1.

What will be the output of the following code?

a)
b)
c)
d)
2.

What would be the output of the following code?

a)
b)
c)
d)
3.

What would be the top left coordinates for the following screen?

a)

200, 200

b)

200, -200

c)

-200, -200

d)

-200, 200

4.

What would be the bottom right coordinates for the following screen?

a)

200, 200

b)

200, -200

c)

-200, -200

d)

-200, 200

5.

What would be the top right coordinates for the following screen?

a)

200, 200

b)

200, -200

c)

-200, -200

d)

-200, 200

6.

What would be the bottom left coordinates for the following screen?

a)

200, 200

b)

200, -200

c)

-200, -200

d)

-200, 200

7.

What is the correct code to make an object named fluffy in the class Turtle.

a)

fluffy.Turtle(class)

b)

fluffy = Turtle( )

c)

fluffy = Turtle(class)

d)

fluffy.Turtle( )

8.

Which of the following circles would be largest?

a)

turtle.circle(30)

b)

turtle.circle(300)

c)

turtle.circle(100)

d)

turtle.circle(500)

9.

Which of the following is the fastest speed?

a)

turtle.speed(0)

b)

turtle.speed(1)

c)

turtle.speed(5)

d)

turtle.speed(10)

10.

Which of the following is the slowest speed?

a)

turtle.speed(0)

b)

turtle.speed(1)

c)

turtle.speed(5)

d)

turtle.speed(10)

11.

Which of the following would make the thickest line?

a)

turtle.pensize(3)

b)

turtle.pensize(1)

c)

turtle.pensize(10)

d)

turtle.pensize(5)

12.

What would be the output of the following code?

a)
b)
c)
d)
13.

Which turtle will go farther?

a)

fluffy

b)

buffy

c)

muffy

14.

How far will go fluffy go?

a)

50

b)

10

c)

5

d)

150

15.

How far will go buffy go?

a)

150

b)

100

c)

5

d)

500

16.

How far will go muffy go?

a)

150

b)

100

c)

5

d)

500

17.

Which of the following codes would be correct to draw a square?

a)
b)
c)
d)