filter multiple criteria in one column pandas code example

Example: how to filter pandas dataframe column with multiple values

# Multiple Criteria dataframe filtering
movies[movies.duration >= 200]
# when you wrap conditions in parantheses, you give order
# you do those in brackets first before 'and'
# AND
movies[(movies.duration >= 200) & (movies.genre == 'Drama')]

# OR 
movies[(movies.duration >= 200) | (movies.genre == 'Drama')]

(movies.duration >= 200) | (movies.genre == 'Drama')

(movies.duration >= 200) & (movies.genre == 'Drama')

# slow method
movies[(movies.genre == 'Crime') | (movies.genre == 'Drama') | (movies.genre == 'Action')]

# fast method
filter_list = ['Crime', 'Drama', 'Action']
movies[movies.genre.isin(filter_list)]