Python中的turtle.showturtle()函数
turtle模块以面向对象和面向过程的方式提供Turtle图形基元。因为它使用 Tkinter 作为底层图形,它需要安装一个支持 Tk 的 Python 版本。
turtle.showturtle()
该方法用于使Turtle可见。它不需要任何参数。
语法:
turtle.showturtle()
or
turtle.st()
下面是上述方法的实现,并附有一个例子。
示例:
# 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)
输出 :