Разделите строку за запятой на Python
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)