您当前的位置:首页 > IT编程 > python
| C语言 | Java | VB | VC | python | Android | TensorFlow | C++ | oracle | 学术与代码 | cnn卷积神经网络 | gnn | 图像修复 | Keras | 数据集 | Neo4j | 自然语言处理 | 深度学习 | 医学CAD | 医学影像 | 超参数 | pointnet | pytorch | 异常检测 |

自学教程:Python degrees() 函数

51自学网 2023-01-09 15:59:58
  python
这篇教程Python degrees() 函数写得很实用,希望能帮到您。

描述

degrees() 将弧度转换为角度。

语法

以下是 degrees() 方法的语法:

import mathmath.degrees(x)

注意:degrees()是不能直接访问的,需要导入 math 模块,然后通过 math 静态对象调用该方法。

参数

  • x -- 一个数值。

返回值

返回一个角度值。

实例

以下展示了使用 degrees() 方法的实例:

#!/usr/bin/pythonimport mathprint "degrees(3) : ",  math.degrees(3)print "degrees(-3) : ",  math.degrees(-3)print "degrees(0) : ",  math.degrees(0)print "degrees(math.pi) : ",  math.degrees(math.pi)print "degrees(math.pi/2) : ",  math.degrees(math.pi/2)print "degrees(math.pi/4) : ",  math.degrees(math.pi/4)

以上实例运行后输出结果为:

degrees(3) :  171.887338539degrees(-3) :  -171.887338539degrees(0) :  0.0degrees(math.pi) :  180.0degrees(math.pi/2) :  90.0degrees(math.pi/4) :  45.0

Python tan() 函数
Python radians() 函数
51自学网自学EXCEL、自学PS、自学CAD、自学C语言、自学css3实例,是一个通过网络自主学习工作技能的自学平台,网友喜欢的软件自学网站。
京ICP备13026421号-1