• 技术文章 >Python技术 >Python基础教程

    Python中degrees怎么用

    爱喝马黛茶的安东尼爱喝马黛茶的安东尼2019-09-16 16:14:21原创2613

    degrees() 函数可以将弧度转换为角度。

    语法

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

    import math
    math.degrees(x)

    相关推荐:《Python教程

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

    参数

    x -- 一个数值。

    返回值

    返回一个角度值。

    实例

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

    #!/usr/bin/python
    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.887338539
    degrees(-3) :  -171.887338539
    degrees(0) :  0.0
    degrees(math.pi) :  180.0
    degrees(math.pi/2) :  90.0
    degrees(math.pi/4) :  45.0
    专题推荐:python degrees
    上一篇:python index函数是什么意思 下一篇:不用第三方库,也能用 Python 作图,效果还不错

    相关文章推荐

    • python中pow是什么意思• python index函数是什么意思

    全部评论我要评论

    © 2021 Python学习网 苏ICP备2021003149号-1

  • 取消发布评论
  • 

    Python学习网