Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using the csv module in python3 and the cvs.reader() won't accept the "-".

data = csv.reader(inFileName,"r")
print(data)

gives me

name,-,1,25,25,25,15
     ^
SyntaxError: invalid syntax

and it is the "-" not the "name" causing the error I tried replacing "-" with a number

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.