运行 ❯
获取您的
自己的 Python
服务器
×
更改方向
更改主题,暗/亮
前往 Spaces
# Import math Library import math # Check whether the values are finite or not print(math.isfinite(2000)) print(math.isfinite(-45.34)) print(math.isfinite(+45.34)) print(math.isfinite(math.inf)) print(math.isfinite(float("nan"))) print(math.isfinite(float("inf"))) print(math.isfinite(float("-inf"))) print(math.isfinite(-math.inf)) print(math.isfinite(0.0))
真
真
真
假
假
假
假
假
真