Python fabs() 函數(shù)
python fabs() 函數(shù)
fabs() 方法返回?cái)?shù)字的絕對(duì)值,如math.fabs(-10) 返回10.0。
1. 語(yǔ)法
以下是 fabs() 方法的語(yǔ)法:
import math math.fabs( x )
注意:fabs()是不能直接訪問(wèn)的,需要導(dǎo)入 math 模塊,通過(guò)靜態(tài)對(duì)象調(diào)用該方法。
2. 參數(shù)
- x -- 數(shù)值表達(dá)式。
3. 返回值
返回?cái)?shù)字的絕對(duì)值。
4. 實(shí)例
以下展示了使用 fabs() 方法的實(shí)例:
#!/usr/bin/python # -*- coding: utf-8 -*- import math # 導(dǎo)入數(shù)學(xué)模塊 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)
以上實(shí)例運(yùn)行后輸出結(jié)果為:
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
相關(guān)文章
- Python 教程
- Python 環(huán)境搭建
- Python 條件語(yǔ)句
- Python break 語(yǔ)句
- Python 列表 List
- Python 操作 MySQL 數(shù)據(jù)庫(kù)
- Python 數(shù)據(jù)結(jié)構(gòu)
- Python 矩陣
- Python 集合
- Python 棧
- Python 哈希表
- Python 圖形
- Python3 注釋
- Python3 for while 循環(huán)語(yǔ)句
- Python3 迭代器
- Python3 函數(shù)
- Python3 OS 文件/目錄方法
- Python3 作用域
- Python3 多線程
- Python3 日期和時(shí)間