import numpy as np List = np.array([[1,2,3], [4,5,6], [7,8,9]]) result = List.flatten() print(result)