the data in my csv file is like this:
081299289X,China Dolls,Lisa See,2014 0345498127,Starter for Ten,David Nicholls,2003 0061053716,Imajica,Clive Barker,1991 05
From the looks of it your CSV contains a header as the first row. Skip it with for example
next(reader, None)
before your for-loop.