Answers for "pandas code to drop the last row"

9

drop last row pandas

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

Python Answers by Framework

Browse Popular Code Answers by Language