這篇文章主要介紹了用Python計算三角函數之acos()方法的使用,是Python學習中的基礎知識,需要的朋友可以參考下
acos()方法返回x的反余弦值,以弧度表示。
語法
以下是acos()方法的語法:
? 1 acos(x)注意:此函數是無法直接訪問的,所以我們需要導入math模塊,然後需要用math的靜態對象來調用這個函數。
參數
返回值
此方法返回的X反余弦,以弧度表示。
例子
下面的例子顯示acos()方法的使用。
? 1 2 3 4 5 6 7 #!/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)當我們運行上面的程序,它會產生以下結果:
? 1 2 3 4 acos(0.64) : 0.876298061168 acos(0) : 1.57079632679 acos(-1) : 3.14159265359 acos(1) : 0.0