Skip to content

Instantly share code, notes, and snippets.

@soyHouston256
Created November 1, 2020 05:05
Show Gist options
  • Save soyHouston256/fc20fb1c94c602c05553898fb6c12b2c to your computer and use it in GitHub Desktop.
Save soyHouston256/fc20fb1c94c602c05553898fb6c12b2c to your computer and use it in GitHub Desktop.
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