A veces, mientras trabajamos con listas de strings, podemos tener un problema en el que necesitamos realizar todas las concatenaciones posibles de todas las strings que ocurren en la lista. Este tipo de problema puede ocurrir en dominios como la programación diurna y la programación escolar.
Analicemos una forma en que se puede realizar esta tarea.
Entrada : test_list = [‘Gfg’, ‘Best’]
Salida : [‘Gfg’, ‘Best’, ‘GfgBest’, ‘BestGfg’]Entrada : test_list = [‘Gfg’]
Salida : [‘Gfg’]
Método: Usar permutaciones() + unir() + bucle
La combinación de las funciones anteriores se puede usar para resolver este problema. En este, realizamos la tarea de concatenación usando join() y la extracción de todas las combinaciones posibles usando permutaciones().
Python3
# Python3 code to demonstrate working of # All possible concatenations in String List # Using permutations() + loop from itertools import permutations # initializing list test_list = ['Gfg', 'is', 'Best'] # printing original list print("The original list : " + str(test_list)) # All possible concatenations in String List # Using permutations() + loop temp = [] for idx in range(1, len(test_list) + 1): temp.extend(list(permutations(test_list, idx))) res = [] for ele in temp: res.append("".join(ele)) # printing result print("All String combinations : " + str(res))
The original list : ['Gfg', 'is', 'Best'] All String combinations : ['Gfg', 'is', 'Best', 'Gfgis', 'GfgBest', 'isGfg', 'isBest', 'BestGfg', 'Bestis', 'GfgisBest', 'GfgBestis', 'isGfgBest', 'isBestGfg', 'BestGfgis', 'BestisGfg']
Publicación traducida automáticamente
Artículo escrito por manjeet_04 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA