Machen Sie sich eine Notiz, weil ich jedes Mal google.
combination.py
>>> from scipy.misc import comb >>> n = 10 >>> r = 4 >>> comb(n, r) array(6.0)
Recommended Posts