Python math.degrees() 方法
实例
将角度从弧度转换为度:
#Import math Library
import math
#Convert angles from radians to degrees:
print (math.degrees(8.90))
print (math.degrees(-20))
print (math.degrees(1))
print (math.degrees(90))
定义与用法
math.degrees()
方法将角度从弧度转换为度。
提示:PI(3.14..)弧度等于180度,这意味着 1 弧度等于 57.2957795 度。
提示:请参见 math.radians()
将度值转换为弧度。
语法
math.degrees(x)
参数值
参数 | 描述 |
---|---|
x | 必填。要转换为度的弧度值。如果参数不是数字,则返回TypeError |
技术细节
返回值: | 一个 float 值,表示以度为单位的值。 |
---|---|
Python 版本: | 2.3 |