Make a note because I google every time.
combination.py
>>> from scipy.misc import comb >>> n = 10 >>> r = 4 >>> comb(n, r) array(6.0)
Recommended Posts