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

在下面的示例中,我们将 float value 作为参数传递给 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() 方法用于检索 Tuples 的弧度,并在指定索引处列出元素:


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