Python數位ceil()
方法返回x
的最大值,即大於等於x
的最小整數。
語法
以下是ceil()
方法的語法 -
import math
math.ceil( x )
注意 - 此方法不能直接存取,需要匯入
math
模組,然後使用math
靜態物件呼叫此函式。
引數
返回值
x
的最小整數。以下範例顯示了ceil()
方法的用法。
#!/usr/bin/python3
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(math.pi) : ", math.ceil(math.pi))
當執行上述程式時,它會產生以下結果 -
math.ceil(-45.17) : -45
math.ceil(100.12) : 101
math.ceil(100.72) : 101
math.ceil(math.pi) : 4