如何在python中表示无穷大?无论您在程序中输入哪个数字,任何数字都不得大于此无穷大表示形式。
在Python中,您可以执行以下操作:
test = float("inf")
在Python 3.5中,您可以执行以下操作:
import math test = math.inf
接着:
test > 1 test > 10000 test > x
永远是真的。当然,除非指出,否则x也是无穷大或“ nan”(“非数字”)。
另外(Python的ONLY 2.X)中,在比较Ellipsis,float(inf)较小,例如:
Ellipsis
float(inf)
float('inf') < Ellipsis
将返回true。