↻
⏵︎ Run
import numpy as np arr = np.array([[True,True], [True,False], [True,False]]) result = np.all(arr, axis=0) print(result)
Output