python make turtle invisible code example
Example: how to make turtle invisible 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.