Skip to content

Instantly share code, notes, and snippets.

@CuGBabyBeaR
Created May 17, 2018 15:29
Show Gist options
  • Save CuGBabyBeaR/0c9253cd5c36e0c7f674bdb7e50175af to your computer and use it in GitHub Desktop.
Save CuGBabyBeaR/0c9253cd5c36e0c7f674bdb7e50175af to your computer and use it in GitHub Desktop.
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