my_df = pd.DataFrame({'ID':['12345','23456','34567'],
'Info':[[['Rob Kardashian', '00052369', '1987-03-17', 'Reality Star'], ['Brooke Barry', '00213658', '2001-03-30', 'TikTok Star']],
[['Bae De Leon', '00896351', '1997-08-02', 'Volleyball Player'],['Jonas Blue', '02369785', '1990-08-02', 'Music Producer'],['Albert Einstein', '65231478', '1879-03-14','Scientist']],
[['Robert Downey Jr', '23897410', '1965-04-04', 'Actor'],['Stan Lee','35239856','1922-12-28','Publisher & Producer']]]})
Hi folks, I have above dataframe and want to convert the elements in column 'Info' to rows. I tried
[[pd.DataFrame(i) for i in k] for k in my_df ['Info'].tolist()]
But the outputs are not what I expected.
Thanks in advance for the help!

