Python求圆柱体表面积和体积
时间: 2024-04-22 12:20:28 浏览: 151
Python可以通过以下公式来求解圆柱体的表面积和体积:
1. 圆柱体的表面积公式:
表面积 = 2 * π * r * (r + h)
其中,r为圆柱体的底面半径,h为圆柱体的高度,π为圆周率,可以使用math库中的pi函数获取。
2. 圆柱体的体积公式:
体积 = π * r^2 * h
其中,r为圆柱体的底面半径,h为圆柱体的高度,π为圆周率,可以使用math库中的pi函数获取。
下面是一个示例代码,演示如何使用Python计算圆柱体的表面积和体积:
```python
import math
def calculate_cylinder_surface_area(radius, height):
surface_area = 2 * math.pi * radius * (radius + height)
return surface_area
def calculate_cylinder_volume(radius, height):
volume = math.pi * radius**2 * height
return volume
# 示例使用
radius = 3.5
height = 10.2
surface_area = calculate_cylinder_surface_area(radius, height)
volume = calculate_cylinder_volume(radius, height)
print("圆柱体的表面积为:", surface_area)
print("圆柱体的体积为:", volume)
```
阅读全文