NumPy - Array Operations
What will be the output of this code?
import numpy as np arr = np.array([True, False, True]) result = np.logical_not(arr) print(result)
