python math数学函数

python math.cos()函数用于求某个弧度的余弦值

在数学中,我们一般使用单位是角度,需要使用math.radians(x) 函数转为弧度。

语法

语法如下:
import math #导入math模块
math.cos( x )

参数

  • x: 指定要转换的弧度

返回值

返回某个弧度的余弦值。

注意

x的单位是弧度,所以一般使用角度单位,需要math.radians(x)函数将角度转为弧度。

程序示例

#!/usr/bin/python
# coding=utf-8
import math
#角度
a = 30;
b = 45;
c = 60;
d = 90;
#转为函数中需要的弧度
a = math.radians(a)
b = math.radians(b)
c = math.radians(c)
d = math.radians(d)

print("cos(30)=", math.cos(a))
print("cos(45)=", math.cos(b))
print("cos(60)=", math.cos(c))
print("cos(90)=", math.cos(d)) 

程序运行结果:

cos(30)= 0.8660254037844387
cos(45)= 0.7071067811865476
cos(60)= 0.5000000000000001
cos(90)= 6.123233995736766e-17