1 2 3 4 5 6
import math def volume(height, radius): return ((math.pi * radius**2) * height) print(volume(10, 3))