Python/ref math degrees
来自菜鸟教程
<languages />
Python math.degrees()方法
例
将角度从弧度转换为度:
# Import math Library import math # Convert from radians to degrees: print (math.degrees(8.90)) print (math.degrees(-20)) print (math.degrees(1)) print (math.degrees(90))
定义和用法
The
mmath.degrees()
方法将角度从弧度转换为度。
Tip: PI(3.14 ..)弧度等于180度,这意味着1弧度等于57.2957795度。
Tip:
也可以看看
math.radians()
将度数值转换为弧度。
句法
math.degrees(x)
参数值
参数 | 描述 |
---|---|
x | 需要。转换为度的弧度值。如果参数不是数字,则返回TypeError |
技术细节
返回值: | A
|
Python版本: | 2.3 |