Python: Shape Classes with Area Method
Implement two classes:
Rectangle:
The constructor for Rectangle must take two arguments that denote the lengths of the rectangle's sides.
The class must have an area method that returns the area of the rectangle.
Circle:
The constructor for Circle must take one argument that denotes the radius of the circle.
The Circle class must have an area method that returns the area of the circle. To implement the area method, use a precise Pi value, preferably the constant math.pi.