Makes the turtle visible. Aliases: showturtle | st No argument. Example (for a Turtle instance named turtle): >>> turtle.hideturtle() >>> turtle.showturtle()
(self)
| 2192 | return self._color(self._fillcolor) |
| 2193 | |
| 2194 | def showturtle(self): |
| 2195 | """Makes the turtle visible. |
| 2196 | |
| 2197 | Aliases: showturtle | st |
| 2198 | |
| 2199 | No argument. |
| 2200 | |
| 2201 | Example (for a Turtle instance named turtle): |
| 2202 | >>> turtle.hideturtle() |
| 2203 | >>> turtle.showturtle() |
| 2204 | """ |
| 2205 | self.pen(shown=True) |
| 2206 | |
| 2207 | def hideturtle(self): |
| 2208 | """Makes the turtle invisible. |