Created
April 14, 2024 05:47
-
-
Save Otavio-hoffmeister/5103866eb1bcc9275be02f3a0cdaa3cd to your computer and use it in GitHub Desktop.
V.1
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 | |
turt = turtle.Turtle() | |
turt.left(45) | |
turt.forward(100) | |
turt.right(180+90) | |
turt.forward(200) | |
turt.left(180+90) | |
turt.forward(30) | |
turt.right(180-140) | |
turt.up() | |
turt.forward(50) | |
turt.down() | |
turt.left(180 + 85) | |
turt.forward(238) | |
turt.right(180 - 45) | |
turt.forward(100) | |
turt.left(180 + 90) | |
turt.forward(200) | |
turt.left(180 - 90) | |
turt.forward(30) | |
turt.right(180 - 140) | |
turtle.exitonclick() |
Author
Otavio-hoffmeister
commented
Apr 14, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment