Python Numpy Asarray_Chkfinite Fungsi Contoh Daftar ke 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)
Outrageous Ostrich