Skip to content

Instantly share code, notes, and snippets.

@EdwardDeaver
Last active September 22, 2016 03:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save EdwardDeaver/e66a691f4b6a4983aa8da37f98a17d30 to your computer and use it in GitHub Desktop.
Save EdwardDeaver/e66a691f4b6a4983aa8da37f98a17d30 to your computer and use it in GitHub Desktop.
Runs for about 5 minutes.
## Runs for 5 minutes
## Author Edward Deaver
import turtle
wn = turtle.Screen()
alex = turtle.Turtle()
wn.bgcolor("orange")
alex.color("white")
x = 90
alex.ht()
alex.speed(0)
for B in range(3):
for a in range(6):
for z in range(10):
for i in range(10):
alex.pensize(1)
alex.left(190)
alex.forward(70)
alex.left(190)
alex.forward(70)
alex.left(190)
alex.forward(70)
alex.left(x)
alex.penup()
alex.left(90)
alex.forward(210) ##RATIO OF LEFT TO LEFT 70*90(prev amunt)/3
alex.pendown()
alex.penup()
alex.forward(210)
alex.pendown()
alex.penup()
alex.forward(210)
alex.pendown()
wn.exitonclick()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment