Selecting a row of a Pandas DataFrame results in a new DataFrame consisting only of the row.
Solution for How to select a row of a Pandas DataFrame by index in Python : You can use pandas.DataFrame.iloc to select a row of a Pandas DataFrame by index Use the syntax df.loc[[index]] to select row at index from df.