If I want to split a list of words separated by a delimiter character, I can use
>>> \'abc,foo,bar\'.split(\',\') [\'abc\', \'foo\', \'bar\']
The CSV module should be able to do that for you