import math r = 50 a = r**2*math.pi print(a)
Here is what the above code is Doing:
1. We import the math module.
2. We define a variable r and assign it the value 50.
3. We define a variable a and assign it the value of r squared times pi.
4. We print the value of a.