📜  pandas 两个条件过滤器 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:38.836000             🧑  作者: Mango

代码示例1
# 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')]