Delete specific rows in csv file from Python 3.4.3
问题 I'm writing my first Python file which basically grabs some webdata and saves to a .csv file (and working, see below). The data structure is consistent but has a header consisting of some 17 rows. I want to import the csv into SQL, but its having trouble with the header data, even if I tell it to start reading from row 18 etc it can't see the data unless I manually delete rows 1-17. I'm thinking the easiest option would be to simply delete rows 1-17 as part of my Python code below. But I have