Fork me on GitHub

Landons Turtle Drawing Newdrawing

by Landon Grindheim

09 Sep 2013

The more I messed with my drawings, the uglier they became. I took a step back and tried to make one look a little nicer. Here's the code for Jim.

import turtle

jim=turtle.Turtle()

for color in ['purple', 'blue', 'green', 'yellow', 'orange', 'red', 'purlple', 'blue', 'green', 'yellow', 'orange', 'red','purple']:
  jim.color(color)
  jim.circle(60)
  jim.fill(45)
  jim.forward(35)
  jim.circle(30)

turtle.done()

And here's what Turtle drew:

jim

Landon is, man. Find Landon Grindheim on Twitter, Github, and on the web.
comments powered by Disqus