Skip to content

Instantly share code, notes, and snippets.

@mrprompt
Created August 15, 2016 06:29
Show Gist options
  • Save mrprompt/18ea614a888a0baade6e720ddfd8a295 to your computer and use it in GitHub Desktop.
Save mrprompt/18ea614a888a0baade6e720ddfd8a295 to your computer and use it in GitHub Desktop.
turtle.py
import turtle
t = turtle.Turtle()
for c in ['red', 'yellow', 'green', 'blue']:
t.color(c)
t.forward(75)
t.left(90)
print "loop ", c
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment