当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python math.degrees()用法及代码示例


Python math.degrees() 方法

math.degrees() 方法是 math 模块的库方法,用于将角度值从弧度转换为度数,它接受一个数字并以度数返回角度值。

注意: math.degrees() 方法只接受数字,如果我们提供除数字之外的任何其他内容,则返回错误 TypeError –“TypeError:a float is required”。

math.degrees() 方法的语法:

    math.degrees(x)

参数: x– 是要转换为度数的弧度数。

返回值: float– 它返回一个浮点值,它是以度为单位的角度值。

例:

    Input:
    x = 10.25

    # function call
    print(math.degrees(x))

    Output:
    587.2817400090938

用于演示 math.degrees() 方法示例的 Python 代码

# Python code to demonstrate example of 
# math.degrees() method

# importing math module
import math 

# number in radians
x = 0
print("math.degrees(",x,"):", math.degrees(x))

x = 0.25
print("math.degrees(",x,"):", math.degrees(x))

x = 10.25
print("math.degrees(",x,"):", math.degrees(x))

x = -0.25
print("math.degrees(",x,"):", math.degrees(x))

输出

math.degrees( 0 ): 0.0
math.degrees( 0.25 ): 14.32394487827058
math.degrees( 10.25 ): 587.2817400090938
math.degrees( -0.25 ): -14.32394487827058

类型错误示例

# Python code to demonstrate example of 
# math.degrees() method with exception

# importing math module
import math 

# number in radians
x = "10"
print("math.degrees(",x,"):", math.degrees(x))

输出

Traceback (most recent call last):
  File "/home/main.py", line 9, in <module>
    print("math.degrees(",x,"):", math.degrees(x))
TypeError:a float is required 


相关用法


注:本文由纯净天空筛选整理自 math.degrees() method with example in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。