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