When working with a DataFrame, if you want to turn a string into a list then split elements in a list into multiple rows, use the combination of str.split() and explode().
str.split()
explode()
My previous tips on pandas.