NEW
Font size
WorksheetsYear 8 - Progress Check 1 (Python Turtle Shapes)
Total questions: 10
Worksheet time: 6mins
Look at this code, what shape will it make?
Square
Triangle
Rectangle
Hexagon
What will this draw?
A Brown rectangle with yellow outline
A Brown Square with a Red outline
A Red Square with a Red Outline
A Yellow Rectangle with a purple outline
This code should draw a solid orange square but it is not correct. How many errors are there?(do NOT take addressing the turtle as an error this time e.g. turtle.right(90))
How do you tell that Python that you are going to use the turtle library?
import_turtle
turtle import
# from turtle import *
from turtle import
There is an error on this piece of code, what is wrong?
Nothing
No begin_fill() set
No colour set in the end fill e.g. end_fill("blue")
No colour set in the start fill e.g. begin_fill("blue")
What will be the output from this code?
A pentagon with an orange outline
A solid orange star
A pentagon
A solid orange pentagon
