diff --git a/place.py b/place.py index 5411d5c..6e0e0dc 100644 --- a/place.py +++ b/place.py @@ -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) @@ -98,4 +124,4 @@ red.forward(2) red.right(2) red.forward(2) -red.right(2) \ No newline at end of file +red.right(2)