removing row from pandas dataframe code example
Example 1: drop a column from dataframe
#working with "text" syntax for the columns:
df.drop(['column_nameA', 'column_nameB'], axis=1, inplace=True)
Example 2: drop the first column pandas
df.set_index['column'] # column refers to column to be set as index