欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

介绍Python中的fabs()方法的使用

程序员文章站 2022-06-26 19:08:02
 方法fabs()返回 x 的绝对值。 语法 以下是fabs()方法的语法: import math math.fabs( x )...

 方法fabs()返回 x 的绝对值。
语法

以下是fabs()方法的语法:

import math

math.fabs( x )

注意:此函数是无法直接访问的,所以我们需要导入math模块,然后需要用math的静态对象来调用这个函数。
参数

  •     x -- 这是一个数值。

返回值

此方法返回 x 的绝对值。
例子

下面的例子显示fabs()方法的使用。

#!/usr/bin/python
import math  # This will import math module

print "math.fabs(-45.17) : ", math.fabs(-45.17)
print "math.fabs(100.12) : ", math.fabs(100.12)
print "math.fabs(100.72) : ", math.fabs(100.72)
print "math.fabs(119L) : ", math.fabs(119L)
print "math.fabs(math.pi) : ", math.fabs(math.pi)

当我们运行上面的程序,它会产生以下结果:

math.fabs(-45.17) : 45.17
math.fabs(100.12) : 100.12
math.fabs(100.72) : 100.72
math.fabs(119L) : 119.0
math.fabs(math.pi) : 3.14159265359