python 取整函数
时间: 2023-10-24 14:34:40 浏览: 59
Python中取整的几种方法小结
5星 · 资源好评率100%
Python 中有多种取整函数,具体使用取决于你需要的取整方式。
1. 向下取整:math.floor(x)
示例代码:
import math
x = 3.14159
print(math.floor(x)) # 输出:3
2. 向上取整:math.ceil(x)
示例代码:
import math
x = 3.14159
print(math.ceil(x)) # 输出:4
3. 四舍五入:round(x, n)
示例代码:
x = 3.14159
print(round(x)) # 输出:3
print(round(x, 2)) # 输出:3.14
阅读全文