Python | Programa para convertir una string en una lista

En este programa, intentaremos convertir una string dada en una lista, donde se encuentran espacios o cualquier otro carácter especial, según la elección del usuario. Para hacer esto usamos el método split() en string .

string.split("delimiter")

Ejemplos:

Python3

# Python code to convert string to list
  
def Convert(string):
    li = list(string.split(" "))
    return li
  
# Driver code    
str1 = "Geeks for Geeks"
print(Convert(str1))

Python3

# Python code to convert string to list
def Convert(string):
    li = list(string.split("-"))
    return li
  
# Driver code    
str1 = "Geeks-for-Geeks"
print(Convert(str1))

Python3

# Python code to convert string to list character-wise
def Convert(string):
    list1=[]
    list1[:0]=string
    return list1
# Driver code
str1="ABCD"
print(Convert(str1))

Python3

# Python code to convert string to list character-wise
# Using re.findall method
import re
  
# Function which uses re.findall method to convert string to list character wise 
def Convert(string):
    return re.findall('[a-zA-Z]', string)
      
# Driver code
str1="ABCD"
print("List of character is : ",Convert(str1))

Publicación traducida automáticamente

Artículo escrito por Chinmoy Lenka y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *