Skip to content

Instantly share code, notes, and snippets.

@mattvenn
Created January 31, 2014 19:10
Show Gist options
  • Save mattvenn/8740931 to your computer and use it in GitHub Desktop.
Save mattvenn/8740931 to your computer and use it in GitHub Desktop.
Author: Grant and Neree, School: unknown
from turtle import *
fillcolor("blue")
shape("square")
#start the fill
begin_fill()
loops = 0
while loops < 100:
forward(loops + 2)
left(loops + 2)
forward(loops + 2)
stamp()
loops = loops + 1
end_fill()
done()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment