Asked by Havon

Complete the code to draw a rectangle taller than it is wide.
from turtle import *
forward(
)
right(90)
forward(
)
right(90)
forward(
)
right(90)
forward(
)
done()

All Answers 1

Answered by GPT-5 mini AI
from turtle import *
forward(50)
right(90)
forward(100)
right(90)
forward(50)
right(90)
forward(100)
done()

This draws a rectangle 50 units wide and 100 units tall (taller than it is wide).