Способ 1:
1. str.replace('; ', ', ')
2. str.split(', ')
Способ 2:
import re
re.split('; |, ',str)
пример:
>>> a='Beautiful, is; better*than\nugly'
>>> import re
>>> re.split('; |, |\*|\n',a)
['Beautiful', 'is', 'better', 'than', 'ugly']