pandas get x rows with value in column code example
Example 1: print last n rows of dataframe
df1.tail(n)
Example 2: selecting a specific value and corrersponding value in df python
#To select rows whose column value equals a scalar, some_value, use ==:df.loc[df['favorite_color'] == 'yellow']