怎么导入sin和cos函数
时间: 2024-05-06 07:17:45 浏览: 78
MATLAB.zip_matlab 语音_matlabsincos_matlab函数sin*cos_matlab里sin_cos
在Python中,可以通过导入math模块来使用sin和cos函数。具体操作如下所示:
```python
import math
x = math.sin(0.5)
y = math.cos(0.5)
print(x, y)
```
上述代码中,我们首先通过`import`语句导入了math模块,然后使用`math.sin()`和`math.cos()`函数分别计算了0.5的正弦值和余弦值,并将结果分别赋值给变量`x`和`y`。最后,使用`print()`函数将它们输出到控制台上。
阅读全文