delete first row of Pandas DataFrame

How to delete first row of Pandas DataFrame

In this article, you’ll learn how to delete the first row in Pandas. Three methods are given to delete the first row of Pandas DataFrame. Method 1: Delete the first row using iloc Output: col_1 col_2 col_3 0 65 80 40 1 60 28 64 2 16 38 94 3 60 48 54 col_1 col_2 …

How to delete first row of Pandas DataFrame Read More »