Skip to content
This repository has been archived by the owner on Feb 16, 2023. It is now read-only.

update square AJM #31

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions place.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,25 @@ def create_spiral_helix():
red.right(2)


~AnJoMA~
t = turtle.Turtle()
s = 50
# drawing first side
t.forward(s) # Forward turtle by s units
t.left(90) # Turn turtle by 90 degree

# drawing second side
t.forward(s) # Forward turtle by s units
t.left(90) # Turn turtle by 90 degree

# drawing third side
t.forward(s) # Forward turtle by s units
t.left(90) # Turn turtle by 90 degree

# drawing fourth side
t.forward(s) # Forward turtle by s units
t.left(90) # Turn turtle by 90 degree

#Alen
def draw_star(size, x, y):

Expand Down