Skip to content

Instantly share code, notes, and snippets.

@mattvenn
Created February 12, 2016 13:26
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 mattvenn/5e6df4b1eb8ea3b635b4 to your computer and use it in GitHub Desktop.
Save mattvenn/5e6df4b1eb8ea3b635b4 to your computer and use it in GitHub Desktop.
Author: L.GAINEY, School: oldfieldschool
from turtle import*
turn = 0
speed (1000)
while turn <72:
pencolor ("Pink")
pensize(10)
forward(100)
back(100)
right(270)
forward(100)
penup()
right(90)
forward(200)
pencolor("blue violet")
pendown()
right(180)
forward(70)
right(270)
forward(100)
left(90)
forward(70)
left(90)
forward(35)
left(90)
forward(15)
turn = turn + 1
end_fill() # ending the fill
done()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment