Write a python function to find the area of a circle using the user provided circumference
Topic: Write a python function to find the area of a circle using the user provided circumference
Solution
def area_of_circle(circumference): circumference = float(circumference) PI = 3.14 area = (circumference * circumference)/(4 * PI) print(f'Area Of a Circle {area}')
List all Python Programs