如何使用Python编程精确计算并保留两位小数来得到圆的面积和周长?
时间: 2024-10-19 11:13:04 浏览: 68
python 输入半径计算圆的周长和面积 示例
5星 · 资源好评率100%
在Python中,你可以使用`math`模块来进行数学运算,包括计算圆的面积和周长。首先需要导入`math`模块,然后定义圆的半径。接下来,我们可以编写函数分别计算面积和周长,并使用`round()`函数保留两位小数。
```python
import math
def calculate_circle(radius):
# 圆的周长公式:C = 2 * π * r
circumference = 2 * math.pi * radius
# 圆的面积公式:A = π * r^2
area = math.pi * (radius ** 2)
# 使用round()函数保留两位小数
circumference_rounded = round(circumference, 2)
area_rounded = round(area, 2)
return circumference_rounded, area_rounded
# 示例,输入半径5
radius = 5
circumference, area = calculate_circle(radius)
print(f"圆的周长是: {circumference}")
print(f"圆的面积是: {area}")
阅读全文