python math.degrees()
函数是三角函数辅助方法,用于将弧度转为角度。常用于计算三角函数的转换。
它是python math.radians() 方法的反函数。
语法
语法如下:import math #导入math模块
math.degrees( x )
参数
- x: 指定要转换的弧度值
返回值
返回弧度对应的角度。
程序示例
#!/usr/bin/python
# coding=utf-8
import math
#弧度值
a = 0.5235987755982988;
b = 0.7853981633974483;
c = 1.0471975511965976;
d = 1.5707963267948966;
#转换为角度值
r1 = math.degrees(a);
r2 = math.degrees(b);
r3 = math.degrees(c);
r4 = math.degrees(d);
print("30度=", r1)
print("45度=", r2)
print("60度=", r3)
print("90度=", r4)
程序运行结果:
30度= 29.999999999999996
45度= 45.0
60度= 59.99999999999999
90度= 90.0
45度= 45.0
60度= 59.99999999999999
90度= 90.0