标签: python python-3.x python-2.7
math.ceil(122.0000000000000001) 显示122 而 math.ceil(122.00000001) 显示123
math.ceil有一个限制,为什么会这样。
答案 0 :(得分:1)
在调用 math.ceil之前发生问题:
math.ceil
>>> 122.0000000000000001 122.0 >>> 122.00000001 122.00000001