remove , in excel column pandas code example
Example 1: remove column from dataframe
df.drop('column_name', axis=1, inplace=True)
Example 2: remove columns from dataframe
df.drop('col_name',1) #1 drop column / 0 drop row
df.drop('column_name', axis=1, inplace=True)
df.drop('col_name',1) #1 drop column / 0 drop row