sparkbyexamples.com
Pandas Drop First N Rows From DataFrame
In Pandas, you can use the drop() method to remove the top/first N rows from a DataFrame. Use iloc[], drop() and tail() methods to drop the first n rows
Malli