Answers for "Drop the last number of columns in pandas"

9

drop the last row of a dataframe

df.drop(df.tail(n).index,inplace=True) # drop last n rows
Posted by: Guest on June-23-2020

Code answers related to "Drop the last number of columns in pandas"

Python Answers by Framework

Browse Popular Code Answers by Language