I have a Data Frame in Python that contains names of actors and the movies in which they participated.
Something like that:
Name     Films
Adam     tt2488496,tt7653254,tt7653254,tt2488496
Jhon     tt1596363,tt1386588,tt6266538
Juan     tt7653254,tt2488496
I need to separate the actors for each movie they participated in.
just like that:
Name     Films
Adam     tt2488496
Adam     tt7653254
Adam     tt7653254
Adam     tt2488496
How can I do it?
 
     
    