Question 02
In a turtle graphics application, there is a bounding rectangle such that coordinates of bottom
left corner are (-300, -300) and those of top right corner are (450, 200).
A
Write a code snippet that determines if the turtle is currently inside or outside of the
rectangle. Then the code should draw one of the two shapes at the turtle's current position.
A. If inside, draw a square with a side length of 50 pixels. Square should be filled with green
color.
B. If outside, draw a circle with radius 75 pixels using a thick blue pen. You do not need to
change the turtle heading.