Python/ref math isinf

来自菜鸟教程
跳转至:导航、​搜索

<languages />

Python math.isinf()方法

Methods数学方法

检查值是否为无穷大:

    # Import math Library
import math 

# Check whether the values are 
    infinite or not
print(math.isinf(56))
print(math.isinf(-45.34))
print(math.isinf(+45.34))
print(math.isinf(math.inf))
print(math.isinf(float("nan")))
print(math.isinf(float("inf")))
print(math.isinf(float("-inf")))
print(math.isinf(-math.inf))

定义和用法

The math.isinf() 方法检查数字是否为无穷大。

如果指定的数字为正或负无穷大,则此方法返回True,否则返回False。

句法

math.isinf(x)

参数值

参数 描述
x 需要。检查号码

技术细节

返回值: A

bool 值,如果为true,则为true x 是一个正负无穷大,否则为False

Python版本: 2.6

Methods数学方法