find all rows if in list code example
Example 1: filter dataframe with list
df[df['Your_Column'].isin([3, 6])]
Example 2: dataframe slice by list of values
In [4]: df[~df['A'].isin([3, 6])]
Out[4]:
A B
0 5 1
3 4 5
df[df['Your_Column'].isin([3, 6])]
In [4]: df[~df['A'].isin([3, 6])]
Out[4]:
A B
0 5 1
3 4 5