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