从键盘输 入角度,输出该角度余弦值,要求所有 结果保留两位小数Python 代码
时间: 2024-02-11 16:08:44 浏览: 71
可以使用Python内置的math库中的cos函数来计算余弦值,然后使用round函数来保留两位小数。具体代码如下:
```python
import math
angle = float(input("请输入角度:"))
cos_val = math.cos(math.radians(angle))
result = round(cos_val, 2)
print("余弦值为:", result)
```
其中,输入的角度需要先转换为弧度才能使用math库中的cos函数计算,因此使用了math.radians函数。最后使用print函数输出结果。
阅读全文