Python math.ceil() 方法
实例
将数字向上舍入到最接近的整数:
# 导入 math 库
import math
# 将数字向上舍入到最接近的整数
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 值。 |