Python數位cos()方法

2019-10-16 23:07:24

Python數位cos()方法返回x弧度的餘弦值。

語法

以下是cos()方法的語法 -

cos(x)

注意 - 此函式不能直接存取,需要匯入math模組,需要使用math靜態物件呼叫此函式。

引數

  • x - 此引數必須是數位值。

返回值

  • 此方法返回-11之間的數值,表示角度的餘弦值。

範例

以下範例顯示了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