write a program in python to find area of circle
Answers
Answered by
0
Explanation:
Example: def findArea(r): PI = 3.14 return PI * (r*r); print("Area of circle = %. 6f" % findArea(6)); You can refer to the below screenshot to see the output for the python program to find the area of a circle using the function.
Similar questions