📅  最后修改于: 2023-12-03 15:37:10.990000             🧑  作者: Mango
在 Python 中,要向下舍入十进制,可以使用内置的函数 math.floor()
。
math.floor(x)
参数:
x
: 必需,数字类型(整数、浮点数等)。返回值:
返回与 x
最接近且小于等于 x
的整数或者浮点数。
import math
print(math.floor(3.14)) # 输出 3
print(math.floor(5)) # 输出 5
print(math.floor(7.8)) # 输出 7
以上就是 Python 中向下舍入十进制的方法。通过 math.floor()
函数可以方便的实现。如果您想要实现别的舍入方式,可以使用 math.ceil()
函数、 round()
函数等。