Last active
February 20, 2019 02:01
-
-
Save john-kelly/43222f9c44b30c683cbbc71c46d7dcaf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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