gpt4 book ai didi

Python: math.ceil 麻烦

转载 作者:太空宇宙 更新时间:2023-11-04 10:46:05 24 4
gpt4 key购买 nike

问题是:

>>> 16/float(1184000)

返回:

1.3513513513513513e-05

如果我尝试对这个数字运行 math.ceil,我会得到“1”而不是“2”

>>>math.ceil(16/float(1184000))

返回:

1.0

这看起来很奇怪,有什么解决办法吗?

最佳答案

好像你错过了权力:-05:

这个数字实际上是:

>>> '{:.20f}'.format(16/float(1184000))
'0.00001351351351351351'

所以答案是正确的。

关于Python: math.ceil 麻烦,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17203102/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com