Python math.tan() 方法

月野氿桃

Python math.tan() 方法

Python math.tan(x) 返回 x 弧度的正切值。

Python 版本: 1.4

语法

math.tan() 方法语法如下:

math.tan(x)

参数说明:

  • x -- 必需,数字。如果 x 不是数字,则返回 TypeError。

返回值

返回一个浮点数,表示 x 的正切值。

实例

以下实例返回数字的正切值:


# 导入 math 包
import math

# 输出正切值
print (math.tan(90))
print (math.tan(-90))
print (math.tan(45))
print (math.tan(60))

输出结果:

-1.995200412208242
1.995200412208242
1.6197751905438615
0.3200403893795629
版权声明:本页面内容旨在传播知识,为用户自行发布,若有侵权等问题请及时与本网联系,我们将第一时间处理。E-mail:284563525@qq.com

目录[+]

取消
微信二维码
微信二维码
支付宝二维码