Respuesta :

limbs7

Answer: I think it is a trick question, a variable would be not be used as code. It must be coded before it will do anything.

Say "nothing" as ur answer.

When you assign a turtle to a variable and print its type, you get:

<class 'turtle.Turtle'>

You can easily check this with the following code.

t = turtle.Turtle() #< this creates a turtle

print(type(t)) #< this prints the turtle's type.

Of course you'll have to import the turtle module.

ACCESS MORE