Created
November 1, 2020 05:05
-
-
Save soyHouston256/fc20fb1c94c602c05553898fb6c12b2c to your computer and use it in GitHub Desktop.
This file contains 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 | |
def run(): | |
tortuga = turtle.Turtle() | |
tortuga.forward(50) | |
tortuga.forward(50) | |
tortuga.right(90) # Rotate clockwise by 90 degrees | |
tortuga.forward(50) | |
tortuga.right(90) | |
tortuga.forward(50) | |
tortuga.right(90) | |
tortuga.forward(50) | |
tortuga.right(90) | |
turtle.done() | |
if __name__ == "__main__": | |
run() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment