Python 官方文档:入门教程 => 点击学习
在python中使用tan函数的方法在Python中使用tan函数时,tan()函数无法直接访问,需要先导入math模块,在通过静态对象调用;tan():tan函数的作用是返回x弧度的正切值。tan()函数语法:import mathmat
在python中使用tan函数的方法
在Python中使用tan函数时,tan()函数无法直接访问,需要先导入math模块,在通过静态对象调用;
tan():tan函数的作用是返回x弧度的正切值。
tan()函数语法:
import math
math.tan(x)
tan()函数使用方法:
import math #导入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.142546543074
tan(-3) : 0.142546543074
tan(0) : 0.0
tan(math.pi) : -1.22460635382e-16
tan(math.pi/2) : 1.63317787284e+16
tan(math.pi/4) : 1.0
--结束END--
本文标题: Python怎么输入tan函数
本文链接: https://lsjlt.com/news/113953.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0