Skip to content

Instantly share code, notes, and snippets.

View El-Richie's full-sized avatar

Richie El-Richie

  • México
View GitHub Profile
@jurandysoares
jurandysoares / christmastree.py
Created December 26, 2012 15:04
A small Christmas' Tree Algorithm in Python.
import turtle
screen = turtle.Screen()
screen.setup(800,600)
circle = turtle.Turtle()
circle.shape('circle')
circle.color('red')
circle.speed('fastest')
circle.up()