how to drop dataframe multiple column by number in python code example
Example: drop a column in pandas
note: df is your dataframe
df = df.drop('coloum_name',axis=1)
note: df is your dataframe
df = df.drop('coloum_name',axis=1)