Fork me on GitHub

Mary's Take on Modern Art, An Experiment with Turtle

by Mary Gillen

11 Oct 2013

Calling it, I'm going to be rich some day. They don't make art like this anymore. I also want to say I am still working on getting my triforce to work. It will happen. I'll make an announcement when it's working and beautiful!

My Turtle

Code:

import turtle
from turtlehack import *
import random

mary = turtle.Turtle() 

mary.speed(14)

for i in range(random.randint(0,10)):
  random_location(mary, 300, 300)
  mary.color(random_color())
  random_circle(mary, 5, 15)

for i in range(random.randint(0, 5)):
   random_location(mary, 150, 200)
   n_sided_polygon(mary, 8, color=random_color(), line_thickness=5, line_length=50)

turtle.done()
Mary is a second year MSIS student focusing on information retrieval. Her interests include big data, data analytics and marketing. Find Mary Gillen on Twitter, Github, and on the web.
comments powered by Disqus