Python 3 - 数字 tan() 方法
-
描述
tan()方法返回 x 弧度的正切值。 -
句法
以下是语法tan()方法 -tan(x)
注意− 这个函数不能直接访问,所以我们需要导入数学模块,然后我们需要使用数学静态对象调用这个函数。 -
参数
x− 这必须是一个数值。 -
返回值
此方法返回一个介于 -1 和 1 之间的数值,表示参数 x 的正切值。 -
例子
以下示例显示了 tan() 方法的用法。#!/usr/bin/python3 import math print ("(tan(3) : ", math.tan(3)) print ("tan(-3) : ", math.tan(-3)) print ("tan(0) : ", math.tan(0)) print ("tan(math.pi) : ", math.tan(math.pi)) print ("tan(math.pi/2) : ", math.tan(math.pi/2)) print ("tan(math.pi/4) : ", math.tan(math.pi/4))
-
输出
当我们运行上面的程序时,它会产生以下结果 -(tan(3) : -0.1425465430742778 tan(-3) : 0.1425465430742778 tan(0) : 0.0 tan(math.pi) : -1.2246467991473532e-16 tan(math.pi/2) : 1.633123935319537e+16 tan(math.pi/4) : 0.9999999999999999