python中的floor和ceil函数

时间:2018-09-16 06:42:04

标签: python

我想在 python 中将浮点值四舍五入为整数,以5的倍数表示。说 3.6到10 21.3到25

1 个答案:

答案 0 :(得分:2)

我将其除以5,将其四舍五入,然后乘以5:

import math
result = math.ceil(21.3 / 5) * 5