MCPcopy Index your code
hub / github.com/python/cpython / showturtle

Method showturtle

Lib/turtle.py:2379–2390  ·  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

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.

Callers 2

__init__Method · 0.80

Calls 1

penMethod · 0.95