Deleting multiple columns based on column names in Pandas December 16, 2022 by Tarik By far the simplest approach is: yourdf.drop(['columnheading1', 'columnheading2'], axis=1, inplace=True)