NumPy - Array Operations
What is the output of the following code?
import numpy as np x = np.array([True, False, True]) y = np.array([False, False, True]) result = np.logical_and(x, y) print(result)
