python三角函数计算
时间: 2023-10-25 16:12:37 浏览: 82
Python内置了三角函数模块math,可以直接使用其中的函数进行三角函数计算。以下是常用的三角函数及其使用方法:
1. sin(x):计算正弦值,x为弧度制的角度。
```python
import math
x = math.pi/4 #计算45度的正弦值
y = math.sin(x)
print(y) #输出0.7071067811865475
```
2. cos(x):计算余弦值,x为弧度制的角度。
```python
import math
x = math.pi/4 #计算45度的余弦值
y = math.cos(x)
print(y) #输出0.7071067811865476
```
3. tan(x):计算正切值,x为弧度制的角度。
```python
import math
x = math.pi/4 #计算45度的正切值
y = math.tan(x)
print(y) #输出0.9999999999999999
```
4. asin(x):计算反正弦值,返回值为弧度制的角度。
```python
import math
x = 0.5 #计算正弦为0.5的角度(弧度制)
y = math.asin(x)
print(y) #输出0.5235987755982989
```
5. acos(x):计算反余弦值,返回值为弧度制的角度。
```python
import math
x = 0.5 #计算余弦为0.5的角度(弧度制)
y = math.acos(x)
print(y) #输出1.0471975511965979
```
6. atan(x):计算反正切值,返回值为弧度制的角度。
```python
import math
x = 1 #计算正切为1的角度(弧度制)
y = math.atan(x)
print(y) #输出0.7853981633974483
```
阅读全文