Answers for "how ot drop a column in python do i use the column name or the column number"

85

drop a column pandas

df.drop(['column_1', 'Column_2'], axis = 1, inplace = True)
Posted by: Guest on November-08-2020
4

how to delete a column from a dataframe in python

del df['column']
Posted by: Guest on April-11-2020

Code answers related to "how ot drop a column in python do i use the column name or the column number"

Python Answers by Framework

Browse Popular Code Answers by Language