Python math.ceil() 方法
实例
将数字向上取整:
#Import math library
import math
#Round a number upward to its nearest integer
print(math.ceil(1.4))
print(math.ceil(5.3))
print(math.ceil(-5.3))
print(math.ceil(22.6))
print(math.ceil(10.0))
定义与用法
math.ceil()
方法将数字向上舍入取最接近的整数(如果需要),并返回结果。
提示:要将一个数字向下取整,请查看 math.floor() 方法.
语法
math.ceil(x)
参数值
参数 | 描述 |
---|---|
x | 必填。指定要四舍五入的数字 |
技术细节
返回值: | 一个 int 值, 表示四舍五入的数字。 |
---|---|
修改日志: | Python 3+ : 返回一个 int 值。Python 2.x : 返回一个 float 值。 |