How to delete first two rows in Pandas

How to delete first two rows in Pandas

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

How to delete first two rows in Pandas Read More »