Ejemplo 1: todas las permutaciones de python
import itertools
print(list(itertools.permutations([1,2,3])))
Ejemplo 2: combinaciones y permutaciones en python
from itertools import permutations
from itertools import combinations
Ejemplo 3: código de permutación y combinación en Python
# A Python program to print all
# combinations of a given length
from itertools import combinations
# Get all combinations of [1, 2, 3]
# and length 2
comb = combinations([1, 2, 3], 2)
# Print the obtained combinations
for i in list(comb):
print (i)
Ejemplo 4: código de permutación y combinación en Python
# A Python program to print all
# permutations of given length
from itertools import permutations
# Get all permutations of length 2
# and length 2
perm = permutations([1, 2, 3], 2)
# Print the obtained permutations
for i in list(perm):
print (i)
Ejemplo 5: importar permutaciones
from itertools import permutations
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)