Friday, September 5, 2025
HomeLanguagesturtle.showturtle() function in Python

turtle.showturtle() function in Python

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 :

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32264 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6634 POSTS0 COMMENTS
Nicole Veronica
11801 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11863 POSTS0 COMMENTS
Shaida Kate Naidoo
6752 POSTS0 COMMENTS
Ted Musemwa
7025 POSTS0 COMMENTS
Thapelo Manthata
6701 POSTS0 COMMENTS
Umr Jansen
6718 POSTS0 COMMENTS