Python Numpy ndarray Fonction d'aplature Exemple
# welcome to softhunt.net
# Python program explaining
# numpy.ndarray.flatten() function
# importing numpy as np
import numpy as np
arr = np.array([[2, 3], [4, 5]])
softhunt = arr.flatten()
print( softhunt )
Outrageous Ostrich