NumPy - Array Manipulation
What will be printed by this code?
import numpy as np arr = np.array([[1, 2], [3, 4]]) r = arr.ravel() r[0] = 10 print(arr[0, 0])
