wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Edublocks Turtle intro

Total questions: 13

Worksheet time: 7mins

Name
Class
Date
1.

Turtle is a way to _________with Python​.


Fill in the blank

a)

write

b)

draw

c)

plan

2.

The turning angle is set by dividing ___ by the number of sides a shape has.


For example a square has 4 sides.

___/4 ==90


Fill in the blank. It is the same answer for both blanks ___ in the question

a)

90

b)

180

c)

360

d)

200

3.

How many lines will this code draw

a)

4

b)

3

c)

2

d)

0

4.

Describe in your own words what this snippet of code will do.

a)

Draw a triangle

b)

Draw a rectangle

c)

Draw a square

d)

Draw a circle

5.

Select the shape that cannot be drawn using command turtle.shape()

a)

arrow

b)

turtle

c)

oval

d)

classsic

6.

Select the correct statement for command turtle.right(angle):

a)

rotate the pen in the clockwise direction by an angle x.

b)

rotate the pen in the anticlockwise direction by an angle x.

7.

Select the code to print even numbers in reverse order

a)
b)
c)
d)
8.

To make the turtle move forward, which command is used?

a)

turtle.penup()

b)

turtle.forward()

c)

turtle.left()

d)

turtle.backward()

9.

When creating a rectangle with the turtle, what angle is needed when turning?

a)

120

b)

180

c)

45

d)

90

10.

How do you tell python you want to use the turtle library

a)

turtle import

b)

import turtle

c)

from libraries import turtle

d)

from turtle import libraries

11.

What does turn(90) do?

a)

Turns right 90 degrees

b)

Turns left 90 degrees

c)

Moves forward 90

d)

Does nothing as 'turn' is not a turtle instruction

12.

What does t.forward(300) do?

a)

Moves in the direction it is facing 300 steps

b)

Moves down the screen 300 steps

c)

Moves up the screen 300 steps

13.

What does the '. ' do?

a)

select attributes of variables

b)

Join the function

c)

import a module

d)

add attributes