Python數位acos()
方法返回x
的弧餘弦值,以弧度表示。
語法
以下是acos()
方法的語法 -
acos(x)
注意 - 此函式不能直接存取,需要匯入
math
模組,需要使用math
靜態物件呼叫此函式。
引數
x
- 這必須是-1
到1
(含)範圍內的數值。如果x
大於1
,則會產生「數學域錯誤」。返回值
x
的弧餘弦,以弧度表示。以下範例顯示了acos()
方法的用法。
#!/usr/bin/python3
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