MCPcopy Create free account
hub / github.com/asweigart/PythonStdioGames / drawSnake

Function drawSnake

src/gamesbyexample/pythons.py:133–137  ·  view source on GitHub ↗
(lengths)

Source from the content-addressed store, hash-verified

131 turtle.right(180)
132
133def drawSnake(lengths):
134 drawSnakeHead(lengths[0])
135 for i in range(1, len(lengths) - 1, 2):
136 drawTwistUpSegment(lengths[i])
137 drawTwistDownSegment(lengths[i + 1])
138
139
140try:

Callers 1

mainFunction · 0.85

Calls 3

drawSnakeHeadFunction · 0.85
drawTwistUpSegmentFunction · 0.85
drawTwistDownSegmentFunction · 0.85

Tested by

no test coverage detected