Programming, Python IT Nursery How to unnest (explode) a column in a pandas DataFrame, into multiple rows I have the following DataFrame where one of the columns is an object (list type cell): df=pd.DataFrame({'A':[1,2],'B':[[1,2],[1,2]]}) df Out... June 2, 2022 0 Comments