print(df.loc[0]) #with label 0(label-based indexing) print(df.iloc[1]) #with index 0(integer based indexing) ...