Python math模块中定义了一些数学函数。由于这个模块属于编译系统自带,因此它可以被无条件调用。该模块还提供了与用标准C定义的数学函数的接口。本文主要介绍Python math.degrees() 方法的使用,以及相关示例代码。

Python math.degrees() 方法

Python Math方法

例如:

将角度从弧度转换为度:

# 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、方法说明

返回值:

float值,以度为单位表示该值

Python Version:

2.3

Python Math方法

推荐文档

相关文档

大家感兴趣的内容

随机列表