當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。