I have this dataframe here that looks like this ( I can't upload images yet so I used plain text instead):
# name things
0 a [d,e,f]
1 b [g,f,s,w]
2 c [s]
and I want to convert it to this:
# name things1 things2 things3 things4
0 a d e f
1 b g f s w
2 c s
Is there any way that I can do this clean and fast? I'm just a beginner so I can't understand too complex code. Thanks very much.