📜  按行过滤包含熊猫 - Python 代码示例

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

代码示例1
In [3]: df[df['ids'].str.contains("ball")]  # removes all rows where 'ball' not in row['ids']
Out[3]:
     ids  vals
0  aball     1
1  bball     2
3  fball     4