MCPcopy Create free account
hub / github.com/RT-Thread/env-windows / showturtle

Method showturtle

tools/python-3.11.9-amd64/Lib/turtle.py:2296–2307  ·  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

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.

Callers 1

__init__Method · 0.80

Calls 1

penMethod · 0.95

Tested by

no test coverage detected