numpy.isfinite() in Python Last Updated : 08 Mar, 2024 Comments Improve Suggest changes Like Article Like Report The numpy.isfinite() function tests element-wise whether it is finite or not(not infinity or not Not a Number) and return the result as a boolean array. Syntax : numpy.isfinite(array [, out]) Parameters : array : [array_like]Input array or object whose elements, we need to test for infinity out : [ndarray, optional]Output array placed with result. Its type is preserved and it must be of the right shape to hold the output. Return : boolean array containing the result Code 1 : Python # Python Program illustrating # numpy.isfinite() method import numpy as geek print("Finite : ", geek.isfinite(1), "\n") print("Finite : ", geek.isfinite(0), "\n") # not a number print("Finite : ", geek.isfinite(geek.nan), "\n") # infinity print("Finite : ", geek.isfinite(geek.inf), "\n") print("Finite : ", geek.isfinite(geek.NINF), "\n") Output : Finite : True Finite : True Finite : False Finite : False Finite : False Code 2 : Python # Python Program illustrating # numpy.isfinite() method import numpy as geek # Returns True/False value for each element b = geek.arange(20).reshape(5, 4) print("\n",b) print("\nIs Finite : \n", geek.isfinite(b)) b = [[1j], [geek.inf]] print("\nIs Finite : \n", geek.isfinite(b)) Output : [[ 0 1 2 3] [ 4 5 6 7] [ 8 9 10 11] [12 13 14 15] [16 17 18 19]] Is Finite : [[ True True True True] [ True True True True] [ True True True True] [ True True True True] [ True True True True]] Is Finite : [[ True] [False]] Note : These codes won't run on online IDE's. So please, run them on your systems to explore the working. Comment More infoAdvertise with us Next Article numpy.isfinite() in Python M Mohit Gupta Improve Article Tags : Python Python-numpy Python numpy-Logic Functions Practice Tags : python Similar Reads numpy.isinf() in Python numpy.isinf() test element-wise whether a value is positive or negative infinity. It returns a Boolean array with True where the input is either +inf or -inf and False otherwise. Example:Pythonimport numpy as np a = np.array([1, np.inf, -np.inf, 0, np.nan]) res = np.isinf(a) print(res)Output[False T 2 min read numpy.isnan() in Python The numpy.isnan() function tests element-wise whether it is NaN or not and returns the result as a boolean array. Syntax : numpy.isnan(array [, out]) Parameters : array : [array_like]Input array or object whose elements, we need to test for infinity out : [ndarray, optional]Output array placed wit 2 min read numpy.isneginf() in Python The numpy.isneginf() function tests element-wise whether it is negative infinity or not, and returns the result as a boolean array. Syntax :  numpy.isneginf(array, y = None) Parameters : array : [array_like]Input array or object whose elements, we need to test for infinity. y : [array_like]A boole 2 min read numpy.isposinf() in Python The numpy.isposinf() function tests element-wise whether it is positive infinity or not and returns the result as a boolean array. Syntax : numpy.isposinf(array, y = None) Parameters:  array : [array_like]Input array or object whose elements, we need to test for infinity. y : [array_like]A boolea 2 min read numpy.any() in Python The numpy.any() function tests whether any array elements along the mentioned axis evaluate to True. Syntax : numpy.any(a, axis = None, out = None, keepdims = class numpy._globals._NoValue at 0x40ba726c) Parameters : array :[array_like]Input array or object whose elements, we need to test. axis : 3 min read Like