📜  Python中的 turtle.hideturtle()函数

📅  最后修改于: 2022-05-13 01:54:35.252000             🧑  作者: Mango

Python中的 turtle.hideturtle()函数

turtle 模块以面向对象和面向过程的方式提供海龟图形原语。因为它使用 Tkinter 作为底层图形,所以它需要安装一个支持 Tk 的Python版本。

海龟.hideturtle()

此方法用于使乌龟不可见。当您在复杂的绘图中时这样做是个好主意,因为隐藏海龟可以明显加快绘图速度。此方法不需要任何参数。

句法:

turtle.hideturtle() or turtle.ht()

以下是上述方法的实现以及一些示例:

示例 1:

Python3
# importing package
import turtle
  
# forward turtle by 100
turtle.forward(100)
  
# hide the turtle
turtle.hideturtle()


Python3
# importing package
import turtle
  
# draw a circle
turtle.circle(80)
  
# hide the turtle
turtle.hideturtle()


输出 :

示例 2:

Python3

# importing package
import turtle
  
# draw a circle
turtle.circle(80)
  
# hide the turtle
turtle.hideturtle()

输出 :

不隐藏乌龟

把乌龟藏起来