numpy.asarray_chkfinite() in Python Last Updated : 23 Nov, 2022 Comments Improve Suggest changes Like Article Like Report numpy.asarray_chkfinite() function is used when we want to convert the input to an array, checking for NaNs (Not A Number) or Infs(Infinities). Input includes scalar, lists, lists of tuples, tuples, tuples of tuples, tuples of lists and ndarrays. Syntax : numpy.asarray_chkfinite(arr, dtype=None, order=None) Parameters : arr : [array_like] Input data, in any form that can be converted to an float type array. This includes scalar, lists, lists of tuples, tuples, tuples of tuples, tuples of lists and ndarrays. dtype : By default, the data-type is inferred from the input data. order : Whether to use row-major (C-style) or column-major (Fortran-style) memory representation. Defaults to ‘C’. Return : [ndarray] Array interpretation of arr. No copy is performed if the input is already ndarray. If arr is a subclass of ndarray, a base class ndarray is returned. Code #1 : List to array Python # Python program explaining # numpy.asarray_chkfinite() function import numpy as geek my_list = [1, 3, 5, 7, 9] print ("Input list : ", my_list) out_arr = geek.asarray_chkfinite(my_list, dtype ='float') print ("output array from input list : ", out_arr) Output : Input list : [1, 3, 5, 7, 9] output array from input list : [ 1. 3. 5. 7. 9.]  Code #2 : Tuple to array Python # Python program explaining # numpy.asarray_chkfinite() function import numpy as geek my_tuple = ([1, 3, 9], [8, 2, 6]) print ("Input tuple : ", my_tuple) out_arr = geek.asarray_chkfinite(my_tuple, dtype ='int8') print ("output array from input tuple : ", out_arr) Output : Input tuple : ([1, 3, 9], [8, 2, 6]) output array from input tuple : [[1 3 9] [8 2 6]]  Note : numpy.asarray_chkfinite() function raises ValueError if arr contains NaN (Not a Number) or Inf (Infinity).   Code #3 : Python # Python program explaining # numpy.asarray_chkfinite() function # when value error occurs import numpy as geek my_list = [1, 3, 5, 7, geek.inf, geek.nan] print ("Input scalar : ", my_scalar) out_arr = geek.asarray_chkfinite(my_list) print ("output fortran array from input scalar : ", out_arr) Output : ValueError: array must not contain infs or NaNs Comment More infoAdvertise with us Next Article numpy.asarray_chkfinite() in Python jana_sayantan Follow Improve Article Tags : Python Python-numpy Python numpy-arrayManipulation Practice Tags : python Similar Reads numpy.asarray() in Python numpy.asarray()function is used when we want to convert input to an array. Input can be lists, lists of tuples, tuples, tuples of tuples, tuples of lists and arrays. Syntax : numpy.asarray(arr, dtype=None, order=None) Parameters : arr : [array_like] Input data, in any form that can be converted to a 2 min read numpy.asfarray() in Python numpy.asfarray()function is used when we want to convert input to a float type array. Input includes scalar, lists, lists of tuples, tuples, tuples of tuples, tuples of lists and ndarrays. Syntax : numpy.asfarray(arr, dtype=type 'numpy.float64') Parameters : arr : [array_like] Input data, in any for 2 min read numpy.asanyarray() in Python numpy.asanyarray()function is used when we want to convert input to an array but it pass ndarray subclasses through. Input can be scalars, lists, lists of tuples, tuples, tuples of tuples, tuples of lists and ndarrays. Syntax : numpy.asanyarray(arr, dtype=None, order=None) Parameters : arr : [array_ 2 min read NumPy Array in Python NumPy (Numerical Python) is a powerful library for numerical computations in Python. It is commonly referred to multidimensional container that holds the same data type. It is the core data structure of the NumPy library and is optimized for numerical and scientific computation in Python. Table of C 2 min read numpy.arange() in Python numpy.arange() function creates an array of evenly spaced values within a given interval. It is similar to Python's built-in range() function but returns a NumPy array instead of a list. Let's understand with a simple example:Pythonimport numpy as np #create an array arr= np.arange(5 , 10) print(arr 2 min read numpy.asfortranarray() in Python numpy.asfortranarray() function is used when we want to convert input to a array which is laid out in Fortran order in memory. Input includes scalar, lists, lists of tuples, tuples, tuples of tuples, tuples of lists and ndarrays. Syntax : numpy.asfortranarray(arr, dtype=None) Parameters : arr : [ar 2 min read numpy.find() in Python numpy.core.defchararray.find(arr, substring, start=0, end=None): Finds the lowest index of the sub-string in the specified range. Parameters: arr : array-like or string to be searched. substring : substring to search for. start, end : [int, optional] Range to search in. Returns : An integer array wi 1 min read numpy.ascontiguousarray() in Python numpy.ascontiguousarray()function is used when we want to return a contiguous array in memory (C order). Syntax : numpy.ascontiguousarray(arr, dtype=None) Parameters : arr : [array_like] Input data, in any form that can be converted to an array. This includes scalars, lists, lists of tuples, tuples, 2 min read numpy.isfinite() in Python 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 : 2 min read numpy.argwhere() in Python numpy.argwhere() function is used to find the indices of array elements that are non-zero, grouped by element. Syntax : numpy.argwhere(arr) Parameters : arr : [array_like] Input array. Return : [ndarray] Indices of elements that are non-zero. Indices are grouped by element. Code #1 : Python3 # Pytho 1 min read Like