At Westonci.ca, we provide reliable answers to your questions from a community of experts. Start exploring today! Get detailed and precise answers to your questions from a dedicated community of experts on our Q&A platform. Experience the ease of finding precise answers to your questions from a knowledgeable community of experts.

Write a program to accept radius and find area of circle

Sagot :

TJC07

Answer:

Change it however you'd like

Explanation:

from math import pi

def findArea(rad):

   return (rad**2) * pi

#test

print(f"Area of the circle: {findArea(5)}")

Answer:

the answer above me is correct

Explanation: