python 删除列

df1.drop(["handsome","smart"],axis=1,inplace=True)#删除列名为handsome和smart的整列...加上inplace=True才能对原数据做出更改

你可能感兴趣的:(python 删除列)