Fork me on GitHub

Elliott's Turtle Exercise

by Elliott Hauser

15 Jan 2014

Here arew my awesome reflections, links, frustrations, and dreams.

import turtle

 wn = turtle.Screen() 
wn.bgcolor("lightgreen")

tess = turtle.Turtle() 
tess.color("blue")
tess.pensize(3)
tess.forward(50)
tess.left(120)
tess.forward(50)

wn.exitonclick()

Turtle image

Elliott Hauser is a PhD Student in information science at UNC Chapel Hill. He's hacking education as one of the cofounders of Trinket.io. Find Elliott Hauser on Twitter, Github, and on the web.
comments powered by Disqus