usei o atributo da seguinte maneira:
file = open('buy_or_not.csv', 'r')
reader = csv.reader(file)
reader.next()
e retornou o seguinte erro:
AttributeError: '_csv.reader' object has no attribute 'next'
para resolver, bastar usar:
file = open('buy_or_not.csv', 'r')
reader = csv.reader(file)
next(reader)
Fiz este post no intuito de ajudar pessoas com o mesmo problema.