WorksheetsEdublocks Turtle intro
Total questions: 13
Worksheet time: 7mins
Turtle is a way to _________with Python.
Fill in the blank
write
draw
plan
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
90
180
360
200
How many lines will this code draw
4
3
2
0
Describe in your own words what this snippet of code will do.
Draw a triangle
Draw a rectangle
Draw a square
Draw a circle
Select the shape that cannot be drawn using command turtle.shape()
arrow
turtle
oval
classsic
Select the correct statement for command turtle.right(angle):
rotate the pen in the clockwise direction by an angle x.
rotate the pen in the anticlockwise direction by an angle x.
Select the code to print even numbers in reverse order
To make the turtle move forward, which command is used?
turtle.penup()
turtle.forward()
turtle.left()
turtle.backward()
When creating a rectangle with the turtle, what angle is needed when turning?
120
180
45
90
How do you tell python you want to use the turtle library
turtle import
import turtle
from libraries import turtle
from turtle import libraries
What does turn(90) do?
Turns right 90 degrees
Turns left 90 degrees
Moves forward 90
Does nothing as 'turn' is not a turtle instruction
What does t.forward(300) do?
Moves in the direction it is facing 300 steps
Moves down the screen 300 steps
Moves up the screen 300 steps
What does the '. ' do?
select attributes of variables
Join the function
import a module
add attributes
