Menu
×
×
Correct!
Exercise:Use the correct method to make a copy of the array.
arr = np.array([1, 2, 3, 4, 5])
x = arr.copy()
Not CorrectClick here to try again. Correct!Next ❯arr = np.array([1, 2, 3, 4, 5]) x = arr. |