Python fabs()方法
方法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