I have a dataframe column where each row is a string and looks something like this:
a&bc,123,#ahd
I want to convert it into a comma separated list that looks like this:
['a&bc', '123', '#ahd']
Can anyone help me out?
I have a dataframe column where each row is a string and looks something like this:
a&bc,123,#ahd
I want to convert it into a comma separated list that looks like this:
['a&bc', '123', '#ahd']
Can anyone help me out?