The turtle module provides turtle graphics primitives, in both object-oriented and procedure-oriented ways. Because it uses Tkinter for the underlying graphics, it needs a version of Python installed with Tk support.
turtle.showturtle()
This method is used to makes the turtle visible. It doesn’t require any argument.
Syntax:
turtle.showturtle() or turtle.st()
Below is the implementation of the above method with an example :
Example:
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) |
Output :

