how to get a row with a particular info in pandas code example
Example 1: fetch row where column is equal to a value pandas
df.loc[df['column_name'] == 'value']
Example 2: how to select rows based on column value pandas
df.loc[df['column_name'] == some_value]