I have a csv loaded into a panda dataframe. One of the columns contains semi colon delimited list of words like
Beach holiday;Plenty of space;Pool
and I would like to turn this into an array or collection like ["Beach holiday","Plenty of space","Pool"]
Alternatively could create a new column derived from the orginal.
Thank you!