I have a df composed of two columns like this:
    rows    A     B
    0       1     7
    1       9     11
    2       20    30
    3       32    35
I would like to create another column so that every row of column A is inserted between two rows of column B.
The output would look like this :
    rows    C
    0       7
    1       9
    2       11
    3       20
    4       30
    5       32
    6       35
Many thanks for your help
 
     
    