1. 程式人生 > >Python math包 math.ceil函式

Python math包 math.ceil函式

import.math  !!!!!         不能直接訪問,需要匯入math模組,然後使用math靜態物件呼叫此函式。

Python數字ceil()方法返回x的最大值,即大於等於x的最小整數。

引數

  • x - 這是一個數字表達式。

返回值

  • 此方法返回不小於x的最小整數。
示例:
#!/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