Python2 math.degrees() 函数
Python math.degrees() 函数将弧度转换为角度
导入模块
import math
语法
math.degrees( x )
参数
参数 | 说明 |
---|---|
x | 一个数值 |
返回值
返回一个角度值
范例
下面的代码使用 math.degrees() 函数将一些数值转换为角度
>>> import math >>> math.degrees(3) 171.88733853924697 >>> math.degrees(-3) -171.88733853924697 >>> math.degrees(0) 0.0 >>> math.degrees(math.pi) 180.0 >>> math.degrees(math.pi/2) 90.0 >>> math.degrees(math.pi/4) 45.0 >>>