Python计算圆柱体体积简单代码
时间: 2024-04-25 09:20:10 浏览: 248
圆柱体体积计算
当然,下面是一个简单的Python代码,用于计算圆柱体的体积:
```python
import math
def calculate_cylinder_volume(radius, height):
base_area = math.pi * radius**2
volume = base_area * height
return volume
# 示例使用
radius = 3
height = 5
volume = calculate_cylinder_volume(radius, height)
print("圆柱体的体积为:", volume)
```
这段代码定义了一个名为`calculate_cylinder_volume`的函数,该函数接受圆柱体的底面半径和高度作为参数,并返回计算得到的体积。在示例中,我们使用半径为3、高度为5的圆柱体进行计算,并将结果打印输出。
阅读全文