Python math.radians() 方法



Python math.radians() 方法用于将角度从度转换为弧度。

在数学中,基数的幂是指基数自身相乘的结果,指数表示基数相乘的次数。

语法

以下是Python math.radians()方法的语法:

math.radians(x)

注意 - 此函数不能直接访问,因此我们需要导入math 模块,然后我们需要使用 math 静态对象调用此函数。

参数

  • x - 必须是数值。

返回值

此方法返回角度的弧度值。

示例 1

如果我们将正值作为参数传递给此方法,则它将返回正值。如果传递的参数为负数,则返回负值。

以下示例演示了 Python math.radians() 方法的用法。

import math
print ("radians(3) : ",  math.radians(3))
print ("radians(-3) : ",  math.radians(-3))
print ("radians(math.pi) : ",  math.radians(math.pi))
print ("radians(-(math.pi/2)) : ",  math.radians(-(math.pi/2)))
print ("radians(math.pi/4) : ",  math.radians(math.pi/4))

运行以上程序后,输出结果如下:

radians(3) :  0.0523598775598
radians(-3) :  -0.0523598775598
radians(math.pi) :  0.0548311355616
radians(-(math.pi/2)) :  -0.027415567780803774
radians(math.pi/4) :  0.0137077838904

示例 2

如果我们将 NaN 值或 0 作为参数传递给此方法,则它将返回 0。

import math
num = 0
res = math.radians(num)
print ("The radian of 0 is: ", res)

执行以上代码后,输出结果如下:

The radian of 0 is:  0.0

示例 3

在以下示例中,我们将浮点值作为参数传递给radians() 方法

import math
num = 78.56
res = math.radians(num)
print ("The radians of a float value is: ", res)

以上代码的输出如下:

The radians of a float value is:  1.3711306603667452

示例 4

在下面给出的示例中,我们创建了一个元组和一个列表。然后使用 radians() 方法检索指定索引处元组和列表元素的弧度。

import math
List = [874.44, 36.54, 38.84, 92.35, 9.9]
Tuple = (34, 576, 93, 85, 62)
print ("The radians of the first List item is: ", math.radians(List[0]))
print ("The radians of the fifth List item is: ", math.radians(List[4]))
print ("The radians of the second tuple item is: ", math.radians(Tuple[1]))

以上代码的输出如下:

The radians of the first List item is:  15.261857111139216
The radians of the fifth List item is:  0.17278759594743864
The radians of the second tuple item is:  10.053096491487338
python_maths.htm
广告