If I have a pandas data frame like this:
     0   1   2 
 0   0   0   0
 1   1   0   1
 2   0   0   1
 3   1   1   0
and an pandas data frame like this:
     0   1   2
 0   0   2   3 
How do I concatenate this array to each row such that I get a new pandas data frame like this:
     0   1   2   3   4   5
 0   0   0   0   0   2   3
 1   1   0   1   0   2   3
 2   0   0   1   0   2   3
 3   1   1   0   0   2   3
 
     
    