Here is my data frame:
    col1   col2     col3    
 0  data1   1        11
 1  data2   2        22
 2  data3   3        33
I would like to transform it into this form:
     data1_col2     data1_col3    data2_col2    data2_col3    data3_col2...  
 0        1             11             2             22            3
If there is a solution for this answer.. what is the term for this type of operation?
 
     
    