Contoh fungsi Python Numpy ATLEAST_1D 02

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

import numpy as np

my_list = [[1, 2, 3], [4, 5, 6]]

print ("Input list : \n", my_list)
	
out_arr = np.atleast_1d(my_list)
print ("output array : \n", out_arr)
Outrageous Ostrich