Comment rendre les tortues invisibles python

turtle.hideturtle()  #'Turtle' can be swapped for given a object name:
pencil = Turtle()  # Generates turtle object named 'Pencil'
pencil.hideturtle()  # Calling the '.hideturtle()' function works on pencil obj.
Link-Start