numpy.bincount详解 numpy.bincount(x, weights=None,minlength=0) 参数中要求x是一个array_like,一维的并且包含非负整数. In [19]: x = [0,1,5,10] In [20]: np.bincount(x) Out[20]: array([1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1], dtype=int64) 可以看到np.bincount(x)的元素个数比起x中的最大值10大1.bincount=…