Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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.
 
PREVIOUS NEXT
Tagged: #turtle #invisible #python
ADD COMMENT
Topic
Name
3+6 =