Python Math degrees() 函数
Python Math degrees() 将弧度转换为角度。
Python Math degrees() 语法
以下是 degrees() 方法的语法:
import math
math.degrees(x)
注意:degrees()是不能直接访问的,需要导入 math 模块,然后通过 math 静态对象调用该方法。
Python Math degrees() 参数
- x : 一个数值。
Python Math degrees() 返回值
返回一个角度值。
Python Math degrees() 示例1
以下展示了使用 degrees() 方法的实例:
#!/usr/bin/python3
import math
print ("degrees(9) : ", math.degrees(9))
print ("degrees(-9) : ", math.degrees(-9))
print ("degrees(0) : ", math.degrees(0))
print ("degrees(math.pi) : ", math.degrees(math.pi))
print ("degrees(math.pi/4) : ", math.degrees(math.pi/4))
print ("degrees(math.pi/8) : ", math.degrees(math.pi/8))
输出: