Python math.asin() 函数

返回上一级

Python math.asin() 函数返回 x 的反正弦弧度值

导入模块

import math

语法

import math

参数

参数 说明
x -1 到 1 之间的数值,如果 x 是大于 1,会触发一个错误 ValueError

返回值

返回 x 的反正弦弧度值

范例

下面的代码使用 math.asin() 函数返回一些数值的反正弦弧度值

>>> import math
>>> math.asin(0.64)
0.694498265626556
>>> math.asin(0)
0.0
>>> math.asin(-1)
-1.5707963267948966
>>> math.asin(1)
1.5707963267948966

返回上一级

Python2 基础教程

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.