diviser une chaîne par virgule en python

str = 'apple,orange,grape'

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

print(chunks)
Scary Sardine