Ubah daftar array menjadi array

# depending on the dimensions of your arrays you might use
numpy.concatenate( LIST, axis=0 )
# or
numpy.stack( LIST, axis=0 )
# or
numpy.vstack( LIST )
Real Raccoon