pandas drop colum by index code example
Example 1: drop column dataframe
df.drop(columns=['Unnamed: 0'])
Example 2: remove a column from dataframe
del df['column_name'] #to remove a column from dataframe
Example 3: drop variable pandas
# pandas drop a column with drop function
gapminder_ocean.drop(['pop'], axis=1)