NEW
Font size
WorksheetsPython L1 Quiz 5: Random Numbers and More Turtle Features
Total questions: 10
Worksheet time: 30mins
How can we tell the turtle to move to the middle of the drawing canvas?
t.pos()
t.goto(0,0)
t.forward(0,0)
t.setheading(0,0)
True or False: t.backward(100) will turn the turtle around to face the opposite direction, then move 100 pixels
True
False
To use Python’s turtle graphics, you must include which of the following statements in your program?
import turtle_graphics
import turtle
import turtle_module
import Turtle
The Python turtle is initially positioned in the _____ of a graphics window.
center
top
right
left
By default, the Turtle heads in the _____ direction.
Up
Down
Right
Left
True or False: By default the turtle’s pen is down.
True
False
True or False: When the pen is down, the turtle draws.
True
False
What will the following code snippet do?
screen.bgcolor(color)
update the background color
update the pen color
update the fill color
update the drawing color
True or False: If you set the turtle’s speed to 0, then the turtle will make all of its moves instantly
True
False
True or False: turtle.hideturtle() will cause the turtle to disappear in the window.
True
False
