dataframe get all row by column value code example
Example 1: fetch row where column is equal to a value pandas
df.loc[df['column_name'] == 'value']
Example 2: get value of a pd for specific values in column
df.loc[df['column_name'].isin(some_values)]