python的三角函数在哪?

图片[1]-python的三角函数在哪?-uusu优素-乐高,模型,3d打印,编程

python中的三角函数在python的标准库math中,math已经包含在你的标准python包中,不需要单独安装。

下面我们就来看一下python中使用三角函数的方法:

如果要求tan(1)的反函数,可用如下方法:

importmath
math.atan(1)*180/(math.pi)

如果要求sin(1)和cos(1)的反函数,可用如下方法:

importmath
math.asin(1)*180/(math.pi)
math.acos(1)*180/(math.pi)

如果求tan函数的值

importmath
print(math.tan(math.pi/4))

输出pi

import
print(math.pi)
原文来自:https://www.py.cn
© 版权声明
THE END
喜欢就支持一下吧
点赞10 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容