diff --git a/place.py b/place.py index b750b0d..d39883b 100644 --- a/place.py +++ b/place.py @@ -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):