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.isfinite() 方法與 Python 示例
- math.isnan() 方法與 Python 示例
- math.remainder() 方法與 Python 示例
- math.ceil() 方法與 Python 示例
- math.floor() 方法與 Python 示例
- math.exp() 方法與 Python 示例
- math.fabs() 方法與 Python 示例
- math.fmod() 方法與 Python 示例
- math.modf() 方法與 Python 示例
- math.fsum() 方法與 Python 示例
- math.gcd() 方法與 Python 示例
- math.pow() 方法與 Python 示例
- math.sqrt() 方法與 Python 示例
- math.factorial() 方法與 Python 示例
- Python 中的 abs() 與 fabs() 方法
相關用法
- Python math.isqrt()用法及代碼示例
- Python math.isnan()用法及代碼示例
- Python math.isfinite()用法及代碼示例
- Python math.cos()用法及代碼示例
- Python math.cosh()用法及代碼示例
- Python math.acosh()用法及代碼示例
- Python math.fmod()用法及代碼示例
- Python math.fsum()用法及代碼示例
- Python math.remainder()用法及代碼示例
- Python math.asinh()用法及代碼示例
- Python math.atanh()用法及代碼示例
- Python math.fabs()用法及代碼示例
- Python math.log1p()用法及代碼示例
- Python math.gcd()用法及代碼示例
- Python math.frexp()用法及代碼示例
- Python math.ldexp()用法及代碼示例
- Python math.acos()用法及代碼示例
- Python math.sin()用法及代碼示例
- Python math.sqrt()用法及代碼示例
- Python math.asin()用法及代碼示例
注:本文由純淨天空篩選整理自 math.isinf() method with example in Python。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。