📜  Python中的 turtle.showturtle()函数

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

Python中的 turtle.showturtle()函数

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

海龟.showturtle()

此方法用于使海龟可见。它不需要任何论据。

句法:

turtle.showturtle() 
or 
turtle.st()

下面是上述方法的一个例子的实现:

例子:

Python3
# import package
import turtle
  
# set speed to slowest for
# better understandings
turtle.speed(1)
  
# motion
turtle.forward(100)
turtle.right(90)
  
# hide the turtle
turtle.hideturtle()
  
# motion
turtle.forward(100)
turtle.right(90)
turtle.forward(100)
turtle.right(90)
  
# show the turtle
turtle.showturtle()
  
# motion
turtle.forward(100)
turtle.right(90)


输出 :