Hi@akhtar,
You can filter Pandas Dataframe with the loc function. For example, to find the instances in a pandas Dataframe where the values of a column are between some values (‘A’ and ‘B’), you can use:
filtered_df = df.loc[(df['col'] >= A) & (df['col'] <= B)]