str = 'Python,Examples,Programs,Code,Programming' chunks = str.split(',') print(chunks)
>>> "MATCHES__STRING".split("__") ['MATCHES', 'STRING']
>>> s = "foobar" >>> list(s) ['f', 'o', 'o', 'b', 'a', 'r']