Conditional Logic
General Info
Useful Snippets

10.0.4 Where Column NOT IN List

Example:

# Where column is NOT in a list of values (~)
DF_Filtered = [ ~( DF['B'].isin(['a','c']) ) ]