df.iloc[0,:]
In [395]: df = pd.DataFrame([[1,1.23,'Hello']], columns=list('ABC')) In [396]: df Out[396]: A B C 0 1 1.23 Hello