Python 3 – Number tan() 方法

Python 3 – Number tan() 方法

描述

tan() 方法返回x弧度的正切值。

语法

下面是 tan() 方法的语法 –

tan(x)

注意 - 该函数不能直接访问,因此我们需要导入math模块,然后使用math静态对象调用此函数。

参数

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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程