NumPy - Array Operations
Identify the mistake in this numpy code snippet:
import numpy as np arr = np.array([4, 5, 6]) result = arr == 4 result = arr = 5 print(result)
