[Python] Inf steht für positive Unendlichkeit

Verwenden Sie float ('inf') oder math.inf. (Math.inf ist aus Python 3.5)

Versuche zu rennen

>>> float('inf')
inf

>>> import math
>>> math.inf
inf

>>> float('inf') == math.inf
True

>>> math.inf > 10 ** 10
True
>>> math.inf < 10 ** 10
False

Dokument

https://docs.python.org/ja/3/library/math.html#math.inf

Recommended Posts

[Python] Inf steht für positive Unendlichkeit
Python: Negative / Positive Analyse: Textanalyse-Anwendung