Python Numpy Copyto Function Contoh Salin Elemen dari Array Sumber ke Array Tujuan.

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