当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python math.isinf()用法及代码示例


Python math.isinf() 方法

math.isinf() 方法是 math 模块的库方法,用于检查数字是否为无穷大(正或负),它接受一个数字并返回True如果给定的数字是正无穷大或负无穷大,则返回False

math.isinf() 方法的语法:

    math.isinf(n)

参数: n– 一个必须检查它是否为无穷大的数字。

返回值: bool– 它返回一个布尔值("True" 或 "False")。

例:

    Input:
    a = 10
    b = float('inf')

    # function call
    print(math.isinf(a))
    print(math.isinf(b))

    Output:
    False
    True

用于演示 math.isinf() 方法示例的 Python 代码

# python code to demonstrate example of 
# math.isinf() method

# importing math module
import math

# math.isinf() method test on finite value
print(math.isinf(10))
print(math.isinf(0))
print(math.isinf(10.23))
print(math.isinf(0.0))


# math.isinf() method test on infinite value
print(math.isinf(float('inf')))
print(math.isinf(float('-inf')))
print(math.isinf(float('nan')))

输出

False
False
False
True
True
False


相关用法


注:本文由纯净天空筛选整理自 math.isinf() method with example in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。