Exemple de fonction Python Numpy Copyto

# import the important module in python
import numpy as np
         
# make an array with numpy
softhunt = np.array([[1, 2, 3], [4, 5, 6]])
softhunt_array = [[9, 8, 7], [6, 5, 4]]
         
# applying numpy.copyto() method
np.copyto(softhunt, softhunt_array)
   
print(softhunt)
Outrageous Ostrich