Python數位cos()
方法返回x
弧度的餘弦值。
語法
以下是cos()
方法的語法 -
cos(x)
注意 - 此函式不能直接存取,需要匯入
math
模組,需要使用math
靜態物件呼叫此函式。
引數
x
- 此引數必須是數位值。返回值
-1
和1
之間的數值,表示角度的餘弦值。以下範例顯示了cos()
方法的用法。
#!/usr/bin/python3
import math
print ("cos(3) : ", math.cos(3))
print ("cos(-3) : ", math.cos(-3))
print ("cos(0) : ", math.cos(0))
print ("cos(math.pi) : ", math.cos(math.pi))
print ("cos(2*math.pi) : ", math.cos(2*math.pi))
當執行上述程式時,它會產生以下結果 -
cos(3) : -0.9899924966
cos(-3) : -0.9899924966
cos(0) : 1.0
cos(math.pi) : -1.0
cos(2*math.pi) : 1.0