博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
np.radians_带有Python示例的math.radians()方法
阅读量:2531 次
发布时间:2019-05-11

本文共 1935 字,大约阅读时间需要 6 分钟。

np.radians

Python math.radians()方法 (Python math.radians() method)

math.radians() method is a library method of math module, it is used to convert angle value from degree to radians, it accepts a number and returns the angle value in radians.

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

Note: math.radians() method accepts only numbers, if we provide anything else except the number, it returns error TypeError"TypeError: a float is required".

注意: math.radians()方法仅接受数字,如果我们提供除数字以外的任何其他内容,它将返回错误TypeError“ TypeError:需要浮点数”

Syntax of math.radians() method:

math.radians()方法的语法:

math.radians(x)

Parameter(s): x – is the number in degree to be converted into radians.

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

Return value: float – it returns a float value that is the angle value in radians.

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

Example:

例:

Input:    x = 10.25    # function call    print(math.radians(x))    Output:    0.17889624832941878

Python代码演示math.radians()方法的示例 (Python code to demonstrate example of math.radians() method)

# Python code to demonstrate example of # math.radians() method# importing math moduleimport math # number in radiansx = 0print("math.radians(",x,"): ", math.radians(x))x = 0.25print("math.radians(",x,"): ", math.radians(x))x = 10.25print("math.radians(",x,"): ", math.radians(x))x = -0.25print("math.radians(",x,"): ", math.radians(x))

Output

输出量

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

TypeError example

TypeError示例

# Python code to demonstrate example of # math.radians() method with exception# importing math moduleimport math # number in radiansx = "10"print("math.radians(",x,"): ", math.radians(x))

Output

输出量

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

翻译自:

np.radians

转载地址:http://zyxzd.baihongyu.com/

你可能感兴趣的文章
kibana的query string syntax 笔记
查看>>
旋转变换(一)旋转矩阵
查看>>
thinkphp3.2.3 bug集锦
查看>>
[BZOJ 4010] 菜肴制作
查看>>
C# 创建 读取 更新 XML文件
查看>>
KD树
查看>>
VsVim - Shortcut Key (快捷键)
查看>>
C++练习 | 模板与泛式编程练习(1)
查看>>
HDU5447 Good Numbers
查看>>
08.CXF发布WebService(Java项目)
查看>>
java-集合框架
查看>>
RTMP
查看>>
求一个数的整数次方
查看>>
点云PCL中小细节
查看>>
铁路信号基础
查看>>
RobotFramework自动化2-自定义关键字
查看>>
[置顶] 【cocos2d-x入门实战】微信飞机大战之三:飞机要起飞了
查看>>
BABOK - 需求分析(Requirements Analysis)概述
查看>>
第43条:掌握GCD及操作队列的使用时机
查看>>
Windows autoKeras的下载与安装连接
查看>>