Skip to content

Instantly share code, notes, and snippets.

@mattvenn
Created February 12, 2016 13:20
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/6efa71976d3207fe0a69 to your computer and use it in GitHub Desktop.
Save mattvenn/6efa71976d3207fe0a69 to your computer and use it in GitHub Desktop.
Author: L.GAINEY, School: oldfieldschool
from turtle import *
import turtle
speed(0)
ninja = turtle.Turtle()
ninja.speed(0)
for i in range(180):
ninja.forward(100)
ninja.right(30)
ninja.forward(20)
ninja.left(60)
ninja.forward(50)
ninja.right(30)
ninja.penup()
ninja.setposition(0, 0)
ninja.pendown()
ninja.right(2)
turtle.done()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment