Makes the turtle visible. Aliases: showturtle | st No argument. Example (for a Turtle instance named turtle): >>> turtle.hideturtle() >>> turtle.showturtle()
(self)
| 2294 | return self._color(self._fillcolor) |
| 2295 | |
| 2296 | def showturtle(self): |
| 2297 | """Makes the turtle visible. |
| 2298 | |
| 2299 | Aliases: showturtle | st |
| 2300 | |
| 2301 | No argument. |
| 2302 | |
| 2303 | Example (for a Turtle instance named turtle): |
| 2304 | >>> turtle.hideturtle() |
| 2305 | >>> turtle.showturtle() |
| 2306 | """ |
| 2307 | self.pen(shown=True) |
| 2308 | |
| 2309 | def hideturtle(self): |
| 2310 | """Makes the turtle invisible. |