Podziel sznurek według przecinka w Pythonie
str = 'apple,orange,grape'
#split string by ,
chunks = str.split(',')
print(chunks)
Scary Sardine
str = 'apple,orange,grape'
#split string by ,
chunks = str.split(',')
print(chunks)