drop row in table pandas code example
Example 1: remove a column from dataframe
del df['column_name'] #to remove a column from dataframe
Example 2: drop the first column pandas
df.set_index['column'] # column refers to column to be set as index
del df['column_name'] #to remove a column from dataframe
df.set_index['column'] # column refers to column to be set as index