unique, counts = numpy.unique(a, return_counts=True)
# credit to Stack Overflow user in source link
# a is a numpy array
# Note: the following syntax allows you to count the number of elements x
# of the array such that 25 < x < 100
((a > 25) & (a < 100)).sum()