Commands
Turtles
Shapes
Functions
Loops
100

What is the command to get the turtle from "home" to a corner of the grid instantly?

setposition(200,200)

setposition(-200,200)

setposition(-200,200)

setposition(200,-200)

100

How do change the shape of a turtle to a triangle 

shape("triangle")

100

How do you draw a circle with a radius of 10?

circle(10)

100

How do you make a function?

def do_something():

# Do something

100

How could you shorten this set of commands?


run_function(1)

run_function(2)

run_function(3)

for i in range(3):

    run_function(i + 1)

200

How do you draw a circle with the radius of 100?

circle(100)

200

How do you change the color of a turtle to blue?

color("blue")

200

How do you draw a square WITH four loops?

for i in range(4)

         forward(10)

         left(90)


200

How do you make a function with parameters?

def do_something(parameter1):

# Do something with the parameter

200
How do you loop something five times?

for i in range(5):

# Do something

300

How do you generate a random number between five and ten?

import random


random.randint(5,10)

300

How do you hide the turtle from view?

hideturtle()

300

How do you make a shape with 5 sides?

Circle(10, 365, 5)

300

How do you make a function with multiple parameters?

def do_something(parameter1, parameter2):

# Do something with the parameters

300

What would you write if you were making 3 circles?

for i in range(3)

        circle(10)

        forward(20)