Python2 math.degrees() 函数

返回上一级

Python math.degrees() 函数将弧度转换为角度

导入模块

import math

语法

math.degrees( x )

参数

参数 说明
x 一个数值

返回值

返回一个角度值

范例

下面的代码使用 math.degrees() 函数将一些数值转换为角度

>>> import math
>>> math.degrees(3)
171.88733853924697
>>> math.degrees(-3)
-171.88733853924697
>>> math.degrees(0)
0.0
>>> math.degrees(math.pi)
180.0
>>> math.degrees(math.pi/2)
90.0
>>> math.degrees(math.pi/4)
45.0
>>> 

返回上一级

Python2 基础教程

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.