Python Turtle Basics: Drawing Shapes

Python Turtle Basics: Drawing Shapes

7th Grade

9 Qs

quiz-placeholder

Similar activities

Adventure game project

Adventure game project

7th - 8th Grade

12 Qs

Google Docs

Google Docs

5th Grade - University

13 Qs

snakes [long version]

snakes [long version]

4th - 12th Grade

7 Qs

Computer Languages

Computer Languages

6th - 12th Grade

10 Qs

Parts of a pc

Parts of a pc

7th Grade

10 Qs

python quiz

python quiz

6th Grade - Professional Development

10 Qs

Scratch_Kyran 67L Student's mappingGrade 6-7

Scratch_Kyran 67L Student's mappingGrade 6-7

6th - 7th Grade

10 Qs

Micro:bit

Micro:bit

4th Grade - University

12 Qs

Python Turtle Basics: Drawing Shapes

Python Turtle Basics: Drawing Shapes

Assessment

Quiz

Computers

7th Grade

Practice Problem

Medium

Created by

Ambrose Koroma

Used 8+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What command is used to import the turtle module in Python?

include turtle

add turtle

load turtle

import turtle

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you create a turtle object in Python?

from turtle import Turtle my_turtle = Turtle()

my_turtle = Turtle.create()

import turtle my_turtle = turtle.create()

import turtle my_turtle = turtle.Turtle()

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What command is used to move the turtle forward by a specified number of units?

backward

move

forward or fd

right

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you make the turtle turn to the right by a specified angle?

turtle.right(angle)

turtle.left(angle)

turtle.turn(angle)

turtle.rotate(angle)

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What command is used to change the color of the turtle's pen?

changecolor

pencolor

colorpen

turtlecolor

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you make the turtle draw a square?

Use the turtle module in Python to draw a circle instead

Tell the turtle to move backwards and turn left to draw a square

Use the turtle module in Python to draw a straight line

Use the turtle module in Python to move the turtle forward and turn it at right angles to draw a square.

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you make the turtle draw a circle?

turtle.draw_circle()

turtle.circle()

turtle.create_circle()

turtle.make_circle()

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What command is used to hide the turtle from the screen?

turtle.showturtle()

turtle.displayturtle()

turtle.hideturtle()

turtle.revealturtle()

9.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you make the turtle go to a specific coordinate on the screen?

turtle.draw_to(x, y)

turtle.set_position(x, y)

turtle.move(x, y)

turtle.goto(x, y)

Discover more resources for Computers