📌  相关文章
📜  删除具有某些值的行 pandas - Python 代码示例

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

代码示例6
#to drop rows based on certain condition in a column
import pandas as pd

df = df[df['column']!=1]