Have got a df which looks like this:
Item    Match
a       bb,cc
b       dd,ee
want to expland the column 'Match' as below:
Item    Match
a       bb
a       cc
b       dd
b       ee
tried df.explode('Match') but didn't worked for me. Kindly share your ideas.
 
    