Python math.cos() 方法

实例

求不同数字的余弦:

  1. # Import math Library
  2. import math
  3. # Return the cosine of different numbers
  4. print (math.cos(0.00))
  5. print (math.cos(-1.23))
  6. print (math.cos(10))
  7. print (math.cos(3.14159265359))

定义与用法

math.cos() 方法返回数字的余弦。


语法

  1. math.cos(x)

参数值

参数描述
x必填。求余弦的数字。如果该值不是数字,则返回 TypeError

技术细节

返回值:一个 float 值,从 -1 到 1,表示角度的余弦
Python 版本:1.4

分类导航