string split python di char

str = 'Python,Examples,Programs,Code,Programming'

chunks = str.split(',')
print(chunks)
Lucky Loris