Skip to content

Instantly share code, notes, and snippets.

@deemarc
deemarc / flower-power.py
Created July 26, 2017 14:24 — forked from mrosata/flower-power.py
Python Turtle Flower... Stack like recursion
#!/usr/bin/python
# Udacity exercise. Just posted the code here to help anyone who wanted to see the work behind my posted result.
__author__ = 'Michael Rosata mrosata1984@gmail.com'
__package__ = ''
from random import random
import turtle
class TurtleArtist(turtle.Turtle):
_origin = (0, 0)