You can split it like this (you need to change the column names):
df[['col1', 'col2', 'col3']] = df['col'].str.split(';',expand=True)
5
solved Split Dataframe with 1 column (multiple values) to multiple columns [closed]
You can split it like this (you need to change the column names):
df[['col1', 'col2', 'col3']] = df['col'].str.split(';',expand=True)
5
solved Split Dataframe with 1 column (multiple values) to multiple columns [closed]