Python/ref math degrees

来自菜鸟教程
跳转至:导航、​搜索

<languages />

Python math.degrees()方法

Methods数学方法

将角度从弧度转换为度:

    # 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

float 值,以度表示值

Python版本: 2.3

Methods数学方法