Python 角度转换函数
degrees()函数
degrees()方法将弧度x转换为角度。
语法
degrees()方法的语法如下:
degrees(x)
注意 − 该函数不能直接访问,因此我们需要导入math模块,然后使用math静态对象调用该函数。
参数
- x − 必须是一个数值类型的值。
返回值
该方法返回角度的度数值。
示例
下面的示例演示了degrees()方法的使用:
from math import degrees, pi
x = 3
val = degrees(x)
print ("x: ",x, "degrees(x): ", val)
x = -3
val = degrees(x)
print ("x: ",x, "degrees(x): ", val)
x = 0
val = degrees(x)
print ("x: ",x, "degrees(x): ", val)
x = pi
val = degrees(x)
print ("x: ",x, "degrees(x): ", val)
x = pi/2
val = degrees(x)
print ("x: ",x, "degrees(x): ", val)
x = pi/4
val = degrees(x)
print ("x: ",x, "degrees(x): ", val)
运行以上程序时,会产生以下输出。
x: 3 degrees(x): 171.88733853924697
x: -3 degrees(x): -171.88733853924697
x: 0 degrees(x): 0.0
x: 3.141592653589793 degrees(x): 180.0
x: 1.5707963267948966 degrees(x): 90.0
x: 0.7853981633974483 degrees(x): 45.0
radians()函数
radians()函数将角度x从度数转换为弧度。
语法
radians()函数的语法如下 –
radians(x)
注意 − 这个函数不能直接访问,所以我们需要导入math模块,然后使用math静态对象调用这个函数。
参数
- x − 这必须是一个数字值。
返回值
这个函数返回一个角度的弧度值。
示例
以下示例显示了radians()方法的用法 −
from math import radians, pi
x = 30
val = radians(x)
print ("x: ",x, "radians(x): ", val)
x = -30
val = radians(x)
print ("x: ",x, "radians(x): ", val)
x = 0
val = radians(x)
print ("x: ",x, "radians(x): ", val)
x = 90
val = radians(x)
print ("x: ",x, "radians(x): ", val)
x = 180
val = radians(x)
print ("x: ",x, "radians(x): ", val)
x = 45
val = radians(x)
print ("x: ",x, "radians(x): ", val)
当我们运行上面的程序时,它会产生以下 输出 –
x: 30 radians(x): 0.5235987755982988
x: -30 radians(x): -0.5235987755982988
x: 0 radians(x): 0.0
x: 90 radians(x): 1.5707963267948966
x: 180 radians(x): 3.141592653589793
x: 45 radians(x): 0.7853981633974483