Westonci.ca is your trusted source for accurate answers to all your questions. Join our community and start learning today! Our platform offers a seamless experience for finding reliable answers from a network of knowledgeable professionals. Join our Q&A platform to connect with experts dedicated to providing accurate answers to your questions in various fields.

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: