Challenge: Print an Unpacked List of Areas of Circles
Understand how to apply functional programming in Python to calculate areas of circles from a list of radii. Learn to round results and print them as an unpacked list for clear output.
We'll cover the following...
We'll cover the following...
Problem statement
Given a list that contains the radii of several circles, write a function to print an unpacked list of areas of these circles, ...