Skip to content

Instantly share code, notes, and snippets.

@mattvenn
Created January 31, 2014 19:20
Show Gist options
  • Save mattvenn/8741100 to your computer and use it in GitHub Desktop.
Save mattvenn/8741100 to your computer and use it in GitHub Desktop.
Author: Julie Bartle, School: International College, Sherborne
from turtle import *
cat=100
loops = 0
while loops < 100:
loops +=1
forward (cat)
backward (50)
right (90)
pencolor("red")
forward (50)
right (90)
forward (50)
right (90)
forward (40)
pencolor("Blue")
left (1)
cat=cat+5
done()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment