Ejemplo 1: función de elección de python
deck = range(1, 53) #get deck of cards from 1 to 52
comb = list(itertools.combinations(deck, 2)) # make list with unic 2 cards combination
len(comb) #output 1326
Ejemplo 2: función de elección de Python
>>> from math import comb
>>> comb(20,10)
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)