Answers for "Python NumPy asarray_chkfinite Function Example List to an array"

0

Python NumPy asarray_chkfinite Function Example List to an array

# welcome to softhunt.net
# Python program explaining
# numpy.asarray_chkfinite() function

import numpy as np
my_list = [1, 2, 3, 4, 5, 6]

print ("Input list : ", my_list)

	
out_arr = np.asarray_chkfinite(my_list, dtype ='float')
print ("output array from input list : ", out_arr)
Posted by: Guest on April-24-2022

Code answers related to "Python NumPy asarray_chkfinite Function Example List to an array"

Python Answers by Framework

Browse Popular Code Answers by Language