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