Python - np.inf not larger than number

馋奶兔 提交于 2021-02-17 06:30:26

问题


Why np.inf > 1e999 returns False?

I'm using Python 3.7


回答1:


The notation 1e999 results in a float -- and this float is larger than the maximum possible value. So 1e999 becomes inf.

A quick test in Ipython:

In [11]: 1e999 == np.inf
Out[11]: True


来源:https://stackoverflow.com/questions/63585238/python-np-inf-not-larger-than-number

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!