Westonci.ca is the premier destination for reliable answers to your questions, brought to you by a community of experts. Join our platform to connect with experts ready to provide precise answers to your questions in various areas. Join our platform to connect with experts ready to provide precise answers to your questions in different areas.

2.12.5: Four Corners

Sagot :

Answer:

speed(0)

square_length = int(input("What is the length of the square?"))

def draw_square():

   pendown()

   for i in range(4):

       forward(square_length)

       left(90)

   penup()

   

penup()

setposition(-200, -200)

draw_square()

penup()

setposition(-200, 200 - square_length)

draw_square()

penup()

setposition(200 - square_length, 200 - square_length)

draw_square()

penup()

setposition(200 - square_length, -200)

draw_square()Explanation: