SyntaxFix
Write A Post
Hire A Developer
Questions
Doing row=1 won't change anything, because you'll just overwrite that with the results of the loop.
row=1
You want to do next(reader) to skip one row.
next(reader)