MCPcopy Create free account
hub / github.com/codemistic/Data-Structures-and-Algorithms / showturtle

Method showturtle

Python/Turtle.py:2194–2205  ·  view source on GitHub ↗

Makes the turtle visible. Aliases: showturtle | st No argument. Example (for a Turtle instance named turtle): >>> turtle.hideturtle() >>> turtle.showturtle()

(self)

Source from the content-addressed store, hash-verified

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.

Callers

nothing calls this directly

Calls 1

penMethod · 0.95

Tested by

no test coverage detected