python中ceil
时间: 2024-04-22 09:19:32 浏览: 191
详解Python3中ceil()函数用法
5星 · 资源好评率100%
在Python中,`ceil`是一个用于向上取整的函数。它属于`math`模块,可以通过`import math`导入。
`ceil`函数的作用是返回大于或等于给定数值的最小整数。如果给定的数值本身就是整数,则返回该整数;如果给定的数值是浮点数,则返回比它大的最小整数。
以下是`ceil`函数的使用示例:
```python
import math
x = 3.7
result = math.ceil(x)
print(result) # 输出结果为4
y = 5
result = math.ceil(y)
print(result) # 输出结果为5
```
阅读全文