脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服务器之家 - 脚本之家 - Python - 用Python计算三角函数之atan()方法的使用

用Python计算三角函数之atan()方法的使用

2020-06-29 09:57Python教程网 Python

这篇文章主要介绍了用Python计算三角函数之atan()方法的使用,是Python入门的基础知识,需要的朋友可以参考下

 atan()方法返回x的反正切值,以弧度表示。
Syntax

以下是atan()方法的语法:

atan(x)

注意:此函数是无法直接访问的,所以我们需要导入math模块,然后需要用math的静态对象来调用这个函数。
参数

  •     x -- 这必须是一个数值。

返回值

此方法返回 x 的反正切值,以弧度表示。
例子

 

下面的例子显示atan()方法的使用。

?
1
2
3
4
5
6
7
8
#!/usr/bin/python
import math
 
print "atan(0.64) : ", math.atan(0.64)
print "atan(0) : ", math.atan(0)
print "atan(10) : ", math.atan(10)
print "atan(-1) : ", math.atan(-1)
print "atan(1) : ", math.atan(1)

当我们运行上面的程序,它会产生以下结果:

?
1
2
3
4
5
atan(0.64) : 0.569313191101
atan(0) : 0.0
atan(10) : 1.4711276743
atan(-1) : -0.785398163397
atan(1) : 0.785398163397

延伸 · 阅读

精彩推荐