Question: Python Write a program that prompts the user to enter three values for x,y, and r. The x and y represent the coordinate of the
Python

Write a program that prompts the user to enter three values for x,y, and r. The x and y represent the coordinate of the point (x, y ). Check whether the point is within the circle centered at (0,0) with a radius of r. Points on the border are not considered inside the circle. The printed result should be only "inside" or "outside." Sample runs Input 1: 11 13 15 Output 1: outside Input 2: 3 4 Output 2: outside def main ( ): \# your code starts here \# your code ends here main()
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
