Te sugerimos que revises esta solución en un entorno controlado antes de pasarlo a producción, saludos.
Ejemplo 1: convertir string para listar Python
# To split the string at every character use the list() function
word ='abc'
L =list(word)
L
# Output:# ['a', 'b', 'c']# To split the string at a specific character use the split() function
word ='a,b,c'
L = word.split(',')
L
# Output:# ['a', 'b', 'c']
Ejemplo 2: conversión de Python string Listar
fruit ='apple oranges banans'
newlist = fruit.split()print(newlist)
Ejemplo 3: python3 crea una lista a partir de string
input=['word1, 23, 12','word2, 10, 19','word3, 11, 15']
output =[]for item ininput:
items = item.split(',')
output.append([items[0],int(items[1]),int(items[2])])
Te mostramos las comentarios y valoraciones de los lectores
Al final de todo puedes encontrar las críticas de otros programadores, tú igualmente tienes el poder mostrar el tuyo si te apetece.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)