Skip to content

Instantly share code, notes, and snippets.

@mattvenn
Created February 12, 2016 13:25
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/6d304ba4b51e0713448f to your computer and use it in GitHub Desktop.
Save mattvenn/6d304ba4b51e0713448f to your computer and use it in GitHub Desktop.
Author: L.GAINEY, School: oldfieldschool
from turtle import *
color('purple', 'black')
begin_fill()
while True:
forward(200)
left(170)
if abs(pos()) < 1:
break
end_fill()
penup ()
back(200)
pendown()
color('purple', 'black')
begin_fill()
while True:
forward(200)
left(170)
if abs(pos()) < 1:
break
end_fill()
done()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment