pandas 删除指定表头的列

一行代码即可删除,列名为 ‘序号’ 的列:

删除 列名为 ‘序号’ 的列

data3 = data2.drop(['序号'], axis=1)
data3.head(1)