Skip to content

Instantly share code, notes, and snippets.

@bholzer
Created September 19, 2016 03:49
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 bholzer/dd713832705831652e3c8806a814d920 to your computer and use it in GitHub Desktop.
Save bholzer/dd713832705831652e3c8806a814d920 to your computer and use it in GitHub Desktop.
import turtle
def drawLine(x1, y1, x2, y2):
turtle.penup()
turtle.goto(x1, y1)
turtle.pendown()
turtle.goto(x2, y2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment