在python中使用ceil函数的方法
ceil:ceil()函数的作用是将给定的数值转换成大于或等于它的最小整数。
ceil()函数语法:
math.ceil( x )
ceil()函数使用方法:
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(119L) : ", math.ceil(119L)
print "math.ceil(math.pi) : ", math.ceil(math.pi)
输出结果为:
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