Created
May 18, 2017 05:49
-
-
Save nattybear/14f1c1eea444cf9e1e32d64640ab55f8 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 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