from math import pi def cube(x): return x**3 def volume(rayon): return 4/3*pi*cube(rayon) print volume(15)