import numpy as nparr = np.array([1, 2, 3, 4, 5])x = arr.copy()print(arr)print(x)执行结果:[1 2 3 4 5][1 2 3 4 5]