PI = 3.1415926 radii = [1, 3, 5, 7, 9] for r in radii: area = PI * r ** 2 print(area)
Main.cc:1:1: error: 'PI' does not name a type PI = 3.1415926 ^