3

How do you hide the turtle while drawing in Python 3. It is covering my work and I need to see exact corners and other things. Is it also possible to draw with it hidden? Thank you.

I have tried this command and it did nothing. t = turtle.Turtle() s = t.getscreen()

2 Answers2

1

You have hide the turtle with the following code.

# hide the turtle
turtle.hide_turtle()
CodeCupboard
  • 1,507
  • 3
  • 17
  • 26
0

Try using hideturtle() function. The syntax would be <turtle_object>. hideturtle()