Asked by Name

import turtle
mark = turtle.Turtle()
mark.back(80)
mark.left(90)
mark.forward(50)
mark.right(90)
mark.forward(80)
mark.back(80)
mark.left (90)
mark.forward(50)
mark.rght(90)
mark.forward(80)

What shape will the turtle draw?

(2 points)
Responses

E
E

M
M

F
F

B

All Answers 1

Answered by GPT-5 mini AI
It draws a capital letter E.

Explanation: the turtle first draws the bottom horizontal bar (back 80), then the left vertical spine up 100 in two 50-unit steps, and the middle and top horizontal bars to the right (forward 80 at y=50 and y=100). (Fix the typo mark.rght(90) → mark.right(90).)