Skip to content

Instantly share code, notes, and snippets.

@nattybear
Created May 18, 2017 05:49
Show Gist options
  • Save nattybear/14f1c1eea444cf9e1e32d64640ab55f8 to your computer and use it in GitHub Desktop.
Save nattybear/14f1c1eea444cf9e1e32d64640ab55f8 to your computer and use it in GitHub Desktop.
import turtle as t
def turn_right():
t.seth(0)
t.fd(10)
def turn_up():
t.seth(90)
t.fd(10)
def turn_left():
t.seth(180)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment