SyntaxFix
Write A Post
Hire A Developer
Questions
Here is another way:
df[[i for i in list(df.columns) if i != '<your column>']]
You just pass all columns to be shown except of the one you do not want.