remove ',' in column df python code example
Example 1: drop a column pandas
df.drop(['column_1', 'Column_2'], axis = 1, inplace = True)
Example 2: how to delete a column from a dataframe in python
del df['column']
df.drop(['column_1', 'Column_2'], axis = 1, inplace = True)
del df['column']