“chaîne pour lister Python” Réponses codées

Convertir la chaîne pour liste 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']
SkelliBoi

chaîne pour lister Python

# 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))
AVIGNAN NAG

Réponses similaires à “chaîne pour lister Python”

Questions similaires à “chaîne pour lister Python”

Plus de réponses similaires à “chaîne pour lister Python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code