import math def areas(r): return (4*math.pi*r*r) def vols(r): return (4.0/3*math.pi*r*r*r) def radv(v): return (math.pow((3*v)/(4*math.pi),(1/3)))