Conditional Logic
General Info
Useful Snippets

10.0.8 Where one or more condition is true - OR Logic

Example:

# use the '|' character to seporate your true/false statements
DF_Filtered = DF[ ( DF['B'] == 'b' )  |  ( DF['B'] == 'c' ) ]

Discussion:

Use the '|' character for 'OR' to seporate your true/false statements