Created
August 15, 2016 06:29
-
-
Save mrprompt/18ea614a888a0baade6e720ddfd8a295 to your computer and use it in GitHub Desktop.
turtle.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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