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.