turtle.showturtle() function in Python (original) (raw)

Last Updated : 3 Oct, 2025

turtle.showturtle() method make the turtle visible on the canvas. It does not require any arguments. This method is useful when you have previously hidden the turtle using turtle.hideturtle().

**Syntax

turtle.showturtle()

# or

turtle.st()

**Example:

Python `

import turtle

set speed to slowest for better visualization

turtle.speed(1)

initial motion

turtle.forward(100) turtle.right(90)

hide the turtle

turtle.hideturtle()

motion while turtle is hidden

turtle.forward(100) turtle.right(90) turtle.forward(100) turtle.right(90)

show the turtle again

turtle.showturtle()

motion after showing turtle

turtle.forward(100) turtle.right(90)

turtle.done()

`

**Output :

**Explanation:

**Related Articles: