The problem im up against at the moment is the need to take a data frame that looks like this
Column 1 Column 2
"A" "B,C,D,E"
"T" "X,R,S"
and to make it look more like this
Column 1
"A"
"B"
"C"
"D"
...
I am trying to do this using Pandas, but I haven't found a way to reliably get the values into that same column.