Skip to content
This repository was archived by the owner on Feb 16, 2023. It is now read-only.
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
28 changes: 27 additions & 1 deletion place.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,32 @@
circle(23)
end_fill()






~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
~end~


# my code

forward(20)
Expand Down Expand Up @@ -98,4 +124,4 @@
red.forward(2)
red.right(2)
red.forward(2)
red.right(2)
red.right(2)