Python math.isfinite() 方法
math.isfinite() 方法是 math 模块的库方法,用于检查给定的数是否为有限数,它接受一个数(整数/浮点数、有限数、无限数或 NaN),并返回True
如果 number 既不是无穷大也不是 NaN(非数字),否则返回False
。
math.isfinite() 方法的语法:
math.isfinite(n)
参数: n
– 一个必须检查它是否有限的数字。
返回值: bool
– 它返回一个布尔值("True" 或 "False")。
例:
Input: a = 10 b = float('inf') # function call print(math.isfinite(a)) print(math.isfinite(b)) Output: True False
用于演示 math.isfinite() 方法示例的 Python 代码
# python code to demonstrate example of
# math.isfinite() method
# importing math module
import math
# math.isfinite() method test on finite value
print(math.isfinite(10))
print(math.isfinite(0))
print(math.isfinite(10.23))
print(math.isfinite(0.0))
# math.isfinite() method test on infinite value
print(math.isfinite(float('inf')))
print(math.isfinite(float('-inf')))
print(math.isfinite(float('nan')))
输出
True True True True False False False
推荐帖子
- math.isinf() 方法与 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 示例
- Python 中的 abs() 与 fabs() 方法
- math.gcd() 方法与 Python 示例
- math.pow() 方法与 Python 示例
- math.sqrt() 方法与 Python 示例
- math.factorial() 方法与 Python 示例
相关用法
- Python math.isqrt()用法及代码示例
- Python math.isnan()用法及代码示例
- Python math.isinf()用法及代码示例
- 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.isfinite() method with example in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。