标签: python
我想在 python 中将浮点值四舍五入为整数,以5的倍数表示。说 3.6到10 或 21.3到25
答案 0 :(得分:2)
我将其除以5,将其四舍五入,然后乘以5:
import math result = math.ceil(21.3 / 5) * 5