Skip to content

Instantly share code, notes, and snippets.

View tahseenbokhari's full-sized avatar

Tahseen Bokhari tahseenbokhari

View GitHub Profile
@tahseenbokhari
tahseenbokhari / flower-power.py
Created July 31, 2016 17:26 — 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)