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