英文:
Find the division remainder of a float number Python
问题
为什么 0.03 除以 0.01,余数是 0.01,而不是零?
我尝试 0.3 % 0.1,结果是 0.1。对于 3 % 1,结果是零。太奇怪了。
英文:
Why 0.03 divide by 0.01, the reminder is 0.01, not zero??
I try 0.3 % 0.1, the result is 0.1. For 3 % 1, the result is zero. Crazy.
答案1
得分: 1
使用 remainder
可以避免这个错误,如下所示。
from math import remainder
remainder(0.03, 0.01)
英文:
Use remainder
can avoid this error, as shown below.
from math import remainder
remainder(0.03,0.01)
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论