I have a dataframe generated using pivot table which looks like this
I want to unmerge the column Score column and it should be like below picture , I want to split the column Score
in to two columns.
I tried this code but it split into two rows instead of column
final_df = final_df.apply(lambda x: x.str.split(' ').explode())