带有Python示例的math.cos()方法
Python math.cos()方法 (Python math.cos() method)
math.cos() method is a library method of math module, it is used to get the cosine of the number radians, it accepts a number returns the cosine of the given number radians.
math.cos()方法是數(shù)學(xué)模塊的庫(kù)方法,用于獲取弧度數(shù)的余弦,它接受一個(gè)數(shù)字,返回給定弧度的余弦。
Note: math.cos() method accepts the only number, if we provide anything else except the number, it returns error TypeError - "TypeError: a float is required".
注意: math.cos()方法接受唯一的數(shù)字,如果我們提供除數(shù)字以外的其他任何內(nèi)容,它將返回錯(cuò)誤TypeError- “ TypeError:需要浮點(diǎn)數(shù)” 。
Syntax of math.cos() method:
math.cos()方法的語(yǔ)法:
math.cos(x)Parameter(s): x – is the number whose cosine to be calculated.
參數(shù): x –是要計(jì)算其余弦的數(shù)字。
Return value: float – it returns a float value that is the cosine value of the number x radians.
返回值: float-它返回一個(gè)浮點(diǎn)值,該值是數(shù)字x弧度的余弦值。
Example:
例:
Input:a = 0.278# function callprint(math.cos(a))Output:0.9616062271291891Python代碼演示math.cos()方法的示例 (Python code to demonstrate example of math.cos() method)
# python code to demonstrate example of # math.cos() method # importing math module import math# number a = -1 print("cos(",a,") is = ", math.cos(a))a = 0 print("cos(",a,") is = ", math.cos(a))a = 0.278 print("cos(",a,") is = ", math.cos(a))a = 1 print("cos(",a,") is = ", math.cos(a))Output
輸出量
cos( -1 ) is = 0.5403023058681398 cos( 0 ) is = 1.0 cos( 0.278 ) is = 0.9616062271291891 cos( 1 ) is = 0.5403023058681398TypeError example
TypeError示例
# python code to demonstrate example of # math.cos() method with an exception# importing math module import math# number a = "2" print("cos(",a,") is = ", math.cos(a))Output
輸出量
Traceback (most recent call last):File "/home/main.py", line 9, in <module>print("acos(",a,") is = ", math.acos(a)) TypeError: a float is required翻譯自: https://www.includehelp.com/python/math-cos-method-with-example.aspx
總結(jié)
以上是生活随笔為你收集整理的带有Python示例的math.cos()方法的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: 【图解】透彻Java线程状态转换
- 下一篇: scala中创建时间序列_如何从Scal