select row that has matching value in other oclumn pandas code example
Example 1: panda select rows where column value inferior to
df.loc[df['column_name'] == some_value]
Example 2: return rows based on column
df['column_name'] >= A & df['column_name'] <= B