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


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


Python math.radians() 方法

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

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

math.radians() 方法的语法:

    math.radians(x)

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

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

例:

    Input:
    x = 10.25

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

    Output:
    0.17889624832941878

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

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

# importing math module
import math 

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

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

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

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

输出

math.radians( 0 ): 0.0
math.radians( 0.25 ): 0.004363323129985824
math.radians( 10.25 ): 0.17889624832941878
math.radians( -0.25 ): -0.004363323129985824

类型错误示例

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

# importing math module
import math 

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

输出

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


相关用法


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