Home >Backend Development >Python Tutorial >用Python计算三角函数之acos()方法的使用

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

WBOY
WBOYOriginal
2016-06-06 11:16:061404browse

 acos()方法返回x的反余弦值,以弧度表示。
语法

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

acos(x)

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

  •     x -- 这必须是在范围内的数字值-1到1,如果x大于1,则它会产生一个错误。

返回值

此方法返回的X反余弦,以弧度表示。
例子

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

#!/usr/bin/python
import math

print "acos(0.64) : ", math.acos(0.64)
print "acos(0) : ", math.acos(0)
print "acos(-1) : ", math.acos(-1)
print "acos(1) : ", math.acos(1)

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

acos(0.64) : 0.876298061168
acos(0) : 1.57079632679
acos(-1) : 3.14159265359
acos(1) : 0.0

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn