Niner710 0 Light Poster

I am interested in using a PanDas dataframe to manipulate data. Can anyone tell me how to append b ** into **df so that I get

7 8 9 10
5 6 7 8

as my df dataframe.

 from pandas import *
 a =   [ [7,8,9,10], ]
 b = [ [5,6,7,8],]

 df = DataFrame(a)
 df.append(b) ????????
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.