Sep-29-2020, 06:09 AM
I am new to programming and python, need help to convert the list to five columns Dataframe , but keep the sequences
small sample from my list:
like this:
"cat1","cat2","blue","color","coffe"
"mary","David","dog","clever","stupid"
1,2,3,4,5
"A","b","c","d","e"
thank a lot


small sample from my list:
list_of_cats = ["cat1","cat2","blue","color","coffe","mary","David","dog","clever","stupid",1,2,3,4,5,"A","b","c","d","e"]five columns dataframe
like this:
"cat1","cat2","blue","color","coffe"
"mary","David","dog","clever","stupid"
1,2,3,4,5
"A","b","c","d","e"
thank a lot

