Answers for "using colown number how can you drop the colwn in python"

2

pandas drop columns by index

cols = [1,2,4,5,12]
df.drop(df.columns[cols],axis=1,inplace=True)
Posted by: Guest on November-10-2020

Code answers related to "using colown number how can you drop the colwn in python"

Python Answers by Framework

Browse Popular Code Answers by Language