Skip to content

Instantly share code, notes, and snippets.

@john-kelly
Last active February 20, 2019 02:01
Show Gist options
  • Save john-kelly/43222f9c44b30c683cbbc71c46d7dcaf to your computer and use it in GitHub Desktop.
Save john-kelly/43222f9c44b30c683cbbc71c46d7dcaf to your computer and use it in GitHub Desktop.
import turtle
__turtle = turtle.Turtle()
__turtle.shape("turtle")
def degrees(n=None):
return __turtle.degrees(n)
def radians():
return __turtle.radians()
def position():
return __turtle.position()
def forward(d):
return __turtle.forward(d)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment