Created
May 17, 2018 15:29
-
-
Save CuGBabyBeaR/0c9253cd5c36e0c7f674bdb7e50175af 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
import turtle as t | |
t.speed(0) | |
t.pensize(5) | |
t.up() | |
t.goto(0,-20) | |
t.left(11.25) | |
t.down() | |
#t.begin_fill() | |
for i in range(16): | |
t.forward(80) | |
t.circle(20,101.25) | |
t.right(90) | |
t.forward(20) | |
t.right(90) | |
t.circle(10,180) | |
t.right(90) | |
t.circle(32,101.25) | |
t.right(180) | |
t.circle(-32,101.25) | |
t.right(180) | |
t.circle(-32,101.25) | |
t.right(180) | |
t.circle(32,101.25) | |
t.right(90) | |
t.circle(10,180) | |
t.right(90) | |
t.forward(20) | |
t.right(90) | |
t.circle(20,101.25) | |
t.forward(80) | |
t.left(90) | |
t.circle(-20,45) | |
t.left(90) | |
t.hideturtle() | |
#t.end_fill() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment