I have Dataframe like this
Number String Aut
0 [12, 13] [hi are, ho to] ppppp
1 34 How qqqqq
2 35 are wwwwwww
i want to convert this into this
Number String Aut
0 12 hi are ppppp
1 13 ho to ppppp
2 34 How qqqqq
3 35 are wwwwwww
i tried this but not working ref
res = df.set_index(['Aut'])['Number', 'String'].apply(pd.Series).stack()
Help will be appreciated .