Я экспериментирую с sympy api для комбинаций.
Сначала комбинации без замены ...
from sympy.functions.combinatorial.numbers import nC
from sympy.utilities.iterables import combinations
nC('abc', 2)
# >>> 3
list(combinations('abc', 2))
# >>> [('a', 'b'), ('a', 'c'), ('b', 'c')]
Теперь я хотел бы перечислить комбинаций с заменой
nC('abc', 2, replacement=True)
# >>> 6
Однако метод комбинаций (), похоже, не поддерживает аргумент ' replacements '?
Init signature: combinations(self, /, *args, **kwargs)
Docstring:
combinations(iterable, r) --> combinations object
Return successive r-length combinations of elements in the iterable.
combinations(range(4), 3) --> (0,1,2), (0,1,3), (0,2,3), (1,2,3)
Type: type