Write a Python function to find area of an Ellipse.
Topic: Write a Python function to find area of an Ellipse.
Solution
def findArea(a, b): Area = 3.142 * a * b ; print("Area:", round(Area, 2)); a = 5; b = 4; findArea(a, b)
List all Python Programs