這篇文章主要介紹了介紹Python中的fabs()方法的使用,是Python入門當中的基礎知識,需要的朋友可以參考下
方法fabs()返回 x 的絕對值。
語法
以下是fabs()方法的語法:
?
1 2 3 import math math.fabs( x )注意:此函數是無法直接訪問的,所以我們需要導入math模塊,然後需要用math的靜態對象來調用這個函數。
參數
x -- 這是一個數值。
返回值
此方法返回 x 的絕對值。
例子
下面的例子顯示fabs()方法的使用。
?
1 2 3 4 5 6 7 8 #!/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)當我們運行上面的程序,它會產生以下結果:
?
1 2 3 4 5 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