Apologies for the noobish question but....
I have a dataframe (in python using pandas, with headers) which looks like this:
   Pink     Blue    Yellow   Green  
 --------- ------- -------- ------- 
  Jackson   Bryan   Bruce    Benji  
  James     Jonah   Jenny    Kevin  
  Tyson     Jenna   Mike     none   
  Kendall   Amy     Alison   none   
  Ben       none    none     none   
How do I get a list of teams and names to look like below?
  Pink    Jackson  
  Pink    James    
  Blue    Bryan    
  ...              
  Green   Kevin    
 
     
    