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