Westonci.ca is the premier destination for reliable answers to your questions, provided by a community of experts. Discover in-depth solutions to your questions from a wide range of experts on our user-friendly Q&A platform. Explore comprehensive solutions to your questions from knowledgeable professionals across various fields on our platform.

Write function definition for a function radius_circle(area)
that takes as a parameter the area of a circle and computes and returns radius r of the circle with the given area. Use math module as appropriate (for pi and for computing square root).
Testing in main(): Write the for loop to create a list of the areas of circles with radii
radii 1 to 5 starting with an empty list (use function area_circle() from problem 1).
Then write another for loop to iterate over the list of areas and for each make a call to
radius_circle to compute the radius. Print on new line each area and the computed
radius.