码迷,mamicode.com
首页 > 编程语言 > 详细

Python degrees() 函数

时间:2017-10-17 16:38:41      阅读:284      评论:0      收藏:0      [点我收藏+]

标签:不能   port   bsp   静态对象   函数   需要   个数   注意   print   

描述

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


语法

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

import math

math.degrees(x)

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


参数

  • x -- 一个数值。

返回值

返回一个角度值。


实例

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

#!/usr/bin/python3
import math

print ("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.88733853924697
degrees(-3) :  -171.88733853924697
degrees(0) :  0.0
degrees(math.pi) :  180.0
degrees(math.pi/2) :  90.0
degrees(math.pi/4) :  45.0

Python degrees() 函数

标签:不能   port   bsp   静态对象   函数   需要   个数   注意   print   

原文地址:http://www.cnblogs.com/wushuaishuai/p/7682251.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!