Which of the following has a logical error? Assume we are trying to draw a red Rectangle centered at (200, 200).
answer choices
Polygon(150, 100, 250, 100, 250, 250, 150, 250, fill='red')
Rect(0, 0, 400, 400, fill='red')
Rect(150, 100, 100, 200, fill='red')
Polygon(0, 0, 0, 400, 400, 400, 400, 0, fill='red')