I have a dataframe that looks like this:
  Index Z1  Z2  Z3 Z4
    0   0   0   A  A
    1   0   B   0  0
    2   C   0   C  0
I want to convert it to
 Index  Z1  Z2  Z3 Z4
   ABC 
    0   0   0   A  A
    1   0   B   0  0
    2   C   0   C  0
I want to basically insert text "ABC" before 0th index and the entire row(ABC) will not have any value It will be okay if the index starts from 1 and not 0 as below
 Index  Z1  Z2  Z3 Z4
   ABC 
    1   0   0   A  A
    2   0   B   0  0
    3   C   0   C  0
 
     
    