IDNLearn.com provides a collaborative environment for finding and sharing answers. Find the answers you need quickly and accurately with help from our knowledgeable and experienced experts.

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: