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

Method turtles

tools/python-3.11.9-amd64/Lib/turtle.py:1214–1221  ·  view source on GitHub ↗

Return the list of turtles on the screen. Example (for a TurtleScreen instance named screen): >>> screen.turtles() [ ]

(self)

Source from the content-addressed store, hash-verified

1212 turtle.reset()
1213
1214 def turtles(self):
1215 """Return the list of turtles on the screen.
1216
1217 Example (for a TurtleScreen instance named screen):
1218 >>> screen.turtles()
1219 [<turtle.Turtle object at 0x00E11FB0>]
1220 """
1221 return self._turtles
1222
1223 def bgcolor(self, *args):
1224 """Set or return backgroundcolor of the TurtleScreen.

Callers 3

updateMethod · 0.95
_updateMethod · 0.80
mainFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected