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).
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).
Submit Your Answer
We prioritize human answers over AI answers.
If you are human, and you can answer this question, please submit your answer.