借助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 id()用法及代碼示例
- Python now()用法及代碼示例
- Python sum()用法及代碼示例
- Python tell()用法及代碼示例
- Python map()用法及代碼示例
- Python hex()用法及代碼示例
- Python cmp()用法及代碼示例
- Python dir()用法及代碼示例
- Python oct()用法及代碼示例
- Python ord()用法及代碼示例
- Python int()用法及代碼示例
- Python format()用法及代碼示例
注:本文由純淨天空篩選整理自Jitender_1998大神的英文原創作品 Python | numpy.copyto() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。