from math import pi def area(r: list): for i in r: print(round(4 * pi * i * i, 2)) r = [1, 2, 4, 9, 10, 13] area(r)