Skip to content

Instantly share code, notes, and snippets.

@sleepynate
Created October 10, 2010 07:16
Show Gist options
  • Save sleepynate/619048 to your computer and use it in GitHub Desktop.
Save sleepynate/619048 to your computer and use it in GitHub Desktop.
import turtle
i = 10
while (i < 1000):
turtle.forward(i)
turtle.left(120)
i += 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment