Using standard Python arrays, I can do the following:
arr = [] arr.append([1,2,3]) arr.append([4,5,6]) # arr is now [[1,2,3],[4,5,6]]
Howev
Here is my solution:
arr = [] arr.append([1,2,3]) arr.append([4,5,6]) np_arr = np.array(arr)