Jatuhkan kolom dari DataFrame
#To delete the column without having to reassign df
df.drop('column_name', axis=1, inplace=True)
Desert Trap
#To delete the column without having to reassign df
df.drop('column_name', axis=1, inplace=True)
df.drop('column_name', axis=1, inplace=True)
note: df is your dataframe
df = df.drop('coloum_name',axis=1)
df = df.drop(['B', 'C'], axis=1)
df.drop(columns=['Unnamed: 0'])
df = df.drop(df.columns[[0, 1, 3]], axis=1)