Skip to content

Commit

Permalink
Feat: add two consecutive shapes together
Browse files Browse the repository at this point in the history
  • Loading branch information
Terieyenike committed Oct 23, 2023
1 parent 8d36082 commit 67fc8a6
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions drawfunctions/teri_eyenike.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
from turtle import *

def draw_shape():
shape('circle')
setup(1.0, 1.0)
bgcolor('black')
speed(10)
pensize(5)
pencolor('magenta')

for i in range(4):
forward(100)
left(90)

for i in range(36):
circle(50)
left(10)

hideturtle()

draw_shape()

0 comments on commit 67fc8a6

Please sign in to comment.