“wie man die Zeichenfolge mit Komma in Python spaltet” Code-Antworten

wie man die Zeichenfolge mit Komma in Python spaltet

# 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

Teilen Sie eine Saite von Comma in Python auf

str = 'apple,orange,grape'

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

print(chunks)
Scary Sardine

Ähnliche Antworten wie “wie man die Zeichenfolge mit Komma in Python spaltet”

Fragen ähnlich wie “wie man die Zeichenfolge mit Komma in Python spaltet”

Weitere verwandte Antworten zu “wie man die Zeichenfolge mit Komma in Python spaltet” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen