📜  删除空行 pandas - Python 代码示例

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

代码示例6
df.dropna(inplace=True)
# to drop any rows that contain any null values
df.dropna(how='all', inplace=True)
# to drop the rows wich all of it's values is any

# if you want to drop the columns not the rows you just set the axis to 1 like this:
df.dropna(axis=1, inplace=True)