“Como dividir a corda com vírgula em python” Respostas de código

Como dividir a corda com vírgula em python

# We can use the split() function and put a "," in the parameter 
# It'll return a list with the string split up by commas.
txt = "hello, my name is Peter, I am 26 years old"

x = txt.split(",")
print(x)
Creepy Constrictor

Divida uma corda por vírgula em Python

str = 'apple,orange,grape'

#split string by ,
chunks = str.split(',')

print(chunks)
Scary Sardine

Respostas semelhantes a “Como dividir a corda com vírgula em python”

Perguntas semelhantes a “Como dividir a corda com vírgula em python”

Mais respostas relacionadas para “Como dividir a corda com vírgula em python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código