Though watch for Error Messageimport csv myReader=csv.reader(open(file_name,"rb"),delimiter='\t', quoting=csv.QUOTE_NONE) for record in myReader: print("len(record)="+str(len(record)) for i in range(len(record)): print("record " + str(i) + "=" + record[i])
"not all arguments converted during string formatting"
No comments:
Post a Comment