numpy.copyto()

numpy.copyto

numpy.copyto(dst, src, casting='same_kind', where=None)

Copies values from one array to another, broadcasting as necessary.

Raises a TypeError if the casting rule is violated, and if where is provided, it selects which elements to copy.

New in version 1.7.0.

Parameters:

dst : ndarray

The array into which values are copied.

src : array_like

The array from which values are copied.