I have a csv file which i want to read it but I need to delete the first 2 rows. But i need to do it before reading it because when i try to read csv gives the following error:
Read CSV: The CSV file format for example.csv is invalid. Line 20 contains more values than the header line.
Because the headers are actually written at row 3 and row 1 & 2 have unwanted info.
Is there any way for me to delete first 2 rows before reading csv?