xxxxxxxxxx
import numpy as np
arr1 = np.array([1, 2, 3])
# Create a new array that has the same values as arr1. If you change arr1_copy you do not change arr1
arr1_copy = np.copy(arr1)
# Create a new reference to arr1. If you change arr1_ref you also change arr1
arr1_ref = arr1