bagaimana menghitung elemen positif numpy

>>> np.sum(np.array(x) > 0, axis=0)
array([3, 3, 3, 3, 3, 0])
Zany Zebra