Python numpy.copyto()函数

Python numpy.copyto()函数

Numpy numpy.copyto()方法的帮助下,我们可以将numpy数组中的所有数据元素复制出来。如果我们在副本中改变任何数据元素,都不会影响原始的numpy数组。

语法: numpy.copyto(destination, source)

返回 : 返回一个数组的副本

例子#1 :
在这个例子中,我们可以看到,在numpy.copyto()方法的帮助下,我们正在复制一个目标数组中的元素。

# import the important module in python
import numpy as np
         
# make an array with numpy
gfg = np.array([1, 2, 3])
geeks = [4, 5, 6]
         
# applying numpy.copyto() method
np.copyto(gfg, geeks)
   
print(gfg)

输出:

[4 5 6]

例子#2 :

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

输出:

[[4 5 6]
 [7 8 9]]

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程