python dataframe删除某列含空值的行

df.dropna(subset=['列名'],inplace=True)

subset参数指定列,inplace参数为True,声明修改原dataframe

你可能感兴趣的:(python,学习笔记)