1You could use a list comprehension to filter the file like so:
2
3with open('file.csv') as fd:
4 reader=csv.reader(fd)
5 interestingrows=[row for idx, row in enumerate(reader) if idx in (28,62)]
6# now interestingrows contains the 28th and the 62th row after the header