>>>> import math
>>>> def circumference(r):return 2*r*math.pi
>>>> def area(r):return r*r*math.pi
>>>> def volume(r):return (4/3)*r*r*r*math.pi
>>>> n = 5
>>>> print (circumference(n))
>>>> print (area(n))
>>>> print (volume(n))