Skip to content

Instantly share code, notes, and snippets.

@svmihar
Created August 20, 2020 18:44
Show Gist options
  • Save svmihar/41da776e547ccb5bc5c177c2c775ff75 to your computer and use it in GitHub Desktop.
Save svmihar/41da776e547ccb5bc5c177c2c775ff75 to your computer and use it in GitHub Desktop.
# for Loops
import turtle
import time
def main():
michelangelo= turtle.Turtle()
michelangelo.color("orange")
side = 75
angle = 90
for count in range(4):
michelangelo.forward(side)
time.sleep(5)
michelangelo.left(angle)
time.sleep(5)
input()
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment