pandas return first row

24

pandas return first row -

df_test.iloc[0]
or
df_test['someColumnName'].iloc[0]

Comments

Submit
0 Comments