📜  如何使乌龟不可见 python 代码示例

📅  最后修改于: 2022-03-11 14:45:43.222000             🧑  作者: Mango

代码示例1
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.