Contact: aviboots(AT)netvision.net.il
39,859 questions
51,780 answers
573 users
import numpy arr = (numpy.arange(10).reshape((2, 5))) print(arr) print() lst = list(numpy.array(arr).reshape(-1,)) print(lst) ''' run: [[0 1 2 3 4] [5 6 7 8 9]] [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] '''
import numpy arr = (numpy.arange(10).reshape((2, 5))) print(arr) print() lst = numpy.array(arr).reshape(-1,).tolist() print(lst) ''' run: [[0 1 2 3 4] [5 6 7 8 9]] [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] '''