Python - 按四分之一间隔舍入
我遇到了以下问题:
给出各种数字,例如:
10.38
11.12
5.24
9.76
是否存在一个已经存在的“内置”函数,可以将它们四舍五入到最接近的 0.25
步骤,例如:
10.38 --> 10.50
<代码> 11.12 --> 11.00
<代码> 5.24 --> 5.25
<代码> 9.76 --> 9-75
或者我可以继续编写一个执行所需任务的函数吗?
I'm running into the following issue:
Given various numbers like:
10.38
11.12
5.24
9.76
does an already 'built-in' function exist to round them up to the closest 0.25
step like e.g.:
10.38 --> 10.50
11.12 --> 11.00
5.24 --> 5.25
9.76 --> 9-75
Or can I go ahead and hack together a function that performs the desired task?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这是一个通用解决方案,允许舍入到任意分辨率。对于您的具体情况,您只需提供
0.25
作为分辨率,但其他值也是可能的,如测试用例所示。这输出:
This is a general purpose solution which allows rounding to arbitrary resolutions. For your specific case, you just need to provide
0.25
as the resolution but other values are possible, as shown in the test cases.This outputs:
没有内置函数,但这样的函数编写起来很简单
There is no builtin, but such a function is trivial to write
paxdiablo的解决方案可以稍微改进一下。
所以该函数现在是:“数据类型敏感”。
The solution of paxdiablo can be a little bit improved.
so the function is now: "data-type sensitive".