Python math.fabs() 函数
Python math.fabs() 函数返回数值的浮点数绝对值,如 math.fabs(-10) 返回 10.0
fabs() 函数类似于 abs() 函数,但是他有两点区别
- abs() 是内置函数。 fabs() 函数在 math 模块中定义
- fabs() 函数只对浮点型跟整型数值有效, abs() 还可以运用在复数中
导入模块
import math
语法
math.fabs( x )
参数
参数 | 返回值 |
---|---|
x | 数值表达式 |
返回值
数字的浮点数形式的绝对值
范例
下面的代码使用 math.fabs() 返回一些数值的浮点类型绝对值
>>> import math >>> math.fabs(-45.17) 45.17 >>> math.fabs(100.12) 100.12 >>> math.fabs(119L) 119.0 >>> math.fabs(math.pi) 3.141592653589793