Makes the turtle visible. Aliases: showturtle | st No argument. Example (for a Turtle instance named turtle): >>> turtle.hideturtle() >>> turtle.showturtle()
(self)
| 2377 | self.pen(pendown=pendown) |
| 2378 | |
| 2379 | def showturtle(self): |
| 2380 | """Makes the turtle visible. |
| 2381 | |
| 2382 | Aliases: showturtle | st |
| 2383 | |
| 2384 | No argument. |
| 2385 | |
| 2386 | Example (for a Turtle instance named turtle): |
| 2387 | >>> turtle.hideturtle() |
| 2388 | >>> turtle.showturtle() |
| 2389 | """ |
| 2390 | self.pen(shown=True) |
| 2391 | |
| 2392 | def hideturtle(self): |
| 2393 | """Makes the turtle invisible. |