Python math.tan() 方法

实例

求不同数字(角度)的正切值:

  1. # 导入 math 库
  2. import math
  3. # 返回不同数字(角度)的正切值
  4. print (math.tan(90))
  5. print (math.tan(-90))
  6. print (math.tan(45))
  7. print (math.tan(60))

定义与用法

math.tan() 方法返回一个数字的正切值.


语法

  1. math.tan(x)

参数值

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

技术细节

返回值:一个 float 值, 表示一个数字的正切值
Python 版本:1.4

分类导航