In [1]:
from scipy.special import perm
In [2]:
print(perm(4, 2))
In [3]:
print(perm(4, 2, exact=True))
In [4]:
print(perm(4, 4, exact=True))