Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

Python NumPy asanyarray Function Example List to an array

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

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

print ("Input list : ", my_list)

	
out_arr = np.asanyarray(my_list)
print ("output array from input list : ", out_arr)
Source by softhunt.net #
 
PREVIOUS NEXT
Tagged: #Python #NumPy #asanyarray #Function #Example #List #array
ADD COMMENT
Topic
Name
2+4 =