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