Created
August 20, 2020 18:44
-
-
Save svmihar/41da776e547ccb5bc5c177c2c775ff75 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
# 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