Exercise 1
Write a Circle
class.
Requirements:
- An instance of the
Circle
class should take $x$ and $y$ coordinates of the circle.
- You must include the initializer constructor (
__init__
).
- Include methods to compute the radius, area, and circumference of the circle
- Demo your
Circle
class