描述
ceil(x) 函式返回乙個大於或等於 x 的的最小整數。
語法以下是 ceil() 方法的語法:
import math
math.ceil( x )
注意:ceil()是不能直接訪問的,需要匯入 math 模組,通過靜態物件呼叫該方法。
引數x -- 數值表示式。
返回值函式返回返回乙個大於或等於 x 的的最小整數。
例項以下展示了使用 ceil() 方法的例項:
#!/usr/bin/python3程式設計客棧
import math # 匯入 math 模組
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(math.pi) : ", math.ceil(math.pi))
以上例項執行後輸出結果為:
www.cppcns.com
math.ceil(-45.17) : -45
math.ceil(100.12) : 101
math.ceil(100.72) : 101
math.ceil(math.pi) : 4
python 向上取整ceil 向下取整floor 四捨五入round
#encoding:utf-8
import math
#向上取整
print "math.ceil---"
print "math.ceil(2.3) => ", math.ceil(2.3)
print "math.ceil(2.6) => ", math.ceil(2.6)
#向下取整
print "\nmath.floor---"
print "math.floor(2.3) => ", math.floor(2.3)
print "math.floor(2.6) => ", math.floor(2.6)
#四捨五入
print "\nround---"
print "round(2.3) => ", round(2.3)
print "round(2.6) => ", round(2.6)
#這三個的返回結果都是浮點型
print "\n\nnote:every result is type of float"
print "math.ceil(2) => ", math.ceil(2)
print "math.floor(2) => ", math.floor程式設計客棧(2)
print "round(2) => ", round(2)
執行結果:
本文標題: 詳解python3中ceil()函式用法
本文位址: /jiaoben/python/252709.html
python3字典詳解 python3中字典詳解
字典 dict 1.建立字典的幾種方式 class dict kwarg class dict iterable,kwarg 使用上面的方法構建字典 方法1構建字典 a dict one 1,two 2,three 3 a輸出結果 方法2構建字典 a dict a輸出結果 方法3構建字典 d dic...
再學python3 五 python的內建函式
內建函式 dir 檢視變數擁有的方法 callable 檢視是否是函式 help 檢視幫助 print dir int abs add print callable print true print help int 列印進度條 可用progress bar外掛程式做 import time for...
詳解python3中的真值測試
1.真值測試 所謂真值測試,是指當一種型別物件出現在if或者while條件語句中時,物件值表現為true或者false。弄清楚各種情況下的真值對我們編寫程式有重要的意義。對於乙個物件a,其真值定義為 以if為例 while是等價的,不做贅述 定義函式truth test x 為 def truth ...