def area_ellipse(radius1, radius2):
"""
area_ellipse calculates the area of an ellipse
Param radius1 (float): Largest radius
Param radius2 (float): Smalles radius
Returns [float] A : area of the ellipse
"""
pi = 3.1415
A = radius1 * radius2 * pi
return A
area = area_ellipse(2, 3)
print(f"The area of the ellipse is {area}")
The area of the ellipse is 18.849