Python ceil() 函數(shù)
python ceil() 函數(shù)
ceil() 函數(shù)返回數(shù)字的上入整數(shù)。
1. 語法
以下是 ceil() 方法的語法:
import math math.ceil( x )
注意:ceil()是不能直接訪問的,需要導(dǎo)入 math 模塊,通過靜態(tài)對象調(diào)用該方法。
2. 參數(shù)
x -- 數(shù)值表達(dá)式。
3. 返回值
函數(shù)返回數(shù)字的上入整數(shù)。
4. 實例
以下展示了使用 ceil() 方法的實例:
#!/usr/bin/python import math # this will import math module print "math.ceil(-45.17) : ", math.ceil(-45.17) print "math.ceil(100.12) : ", math.ceil(100.12) print "math.ceil(100.72) : ", math.ceil(100.72) print "math.ceil(119l) : ", math.ceil(119l) print "math.ceil(math.pi) : ", math.ceil(math.pi)
以上實例運行后輸出結(jié)果為:
math.ceil(-45.17) : -45.0 math.ceil(100.12) : 101.0 math.ceil(100.72) : 101.0 math.ceil(119l) : 119.0 math.ceil(math.pi) : 4.0
相關(guān)文章
- Python Number 數(shù)字
- Python 列表 List
- Python 字典 Dictionary
- Python 文件I/O
- Python 正則表達(dá)式
- Python 數(shù)據(jù)結(jié)構(gòu)
- Python 列表
- Python 集合
- Python 隊列
- Python 高級鏈表
- Python 搜索樹
- Python 分而治之
- Python 圖算法
- Python3 教程
- Python3 解釋器
- Python3 注釋
- Python3 元組(Tuple)
- Python3 字典(Dictionary)
- Python3 模塊
- Python3 網(wǎng)絡(luò)編程