Answers for "Python NumPy asarray Function Example Tuple to an array"

0

Python NumPy asarray Function Example Tuple to an array

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

import numpy as np

my_tuple = ([1, 2, 3], [4, 5, 6])

print ("Input tuple : ", my_tuple)
	
out_arr = np.asarray(my_tuple)
print ("output array from input tuple : \n", out_arr)
Posted by: Guest on April-24-2022

Python Answers by Framework

Browse Popular Code Answers by Language