Python math.degrees() 方法
例如:
将角度从弧度转换为度:
# Import math Library
import math
# 从弧度转换成角度:
print (math.degrees(8.90))
print (math.degrees(-20))
print (math.degrees(1))
print (math.degrees(90))
1、定义和用法
mmath.degrees()
方法可将角度从弧度转换为度。
提示:PI(3.14 ..)弧度等于180度,这意味着1弧度等于57.2957795度。
提示:另请参见math.radians()
将度值转换为弧度。
2、调用语法
math.degrees(x)
3、参数说明
参数 | 描述 |
x | 必需的参数, 转换为度的弧度值。 如果参数不是数字, 则返回TypeError |
4、方法说明
返回值: |
|
Python Version: | 2.3 |