📌  相关文章
📜  从数据框中删除一列 - Python 代码示例

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

代码示例6
#to drop by column number instead of by column label, try this to delete, e.g. the 1st, 2nd and 4th columns
df = df.drop(df.columns[[0, 1, 3]], axis=1)  # df.columns is zero-based pd.Index