I understand enumerate is better to use when it is needed to read a specific line from a large file, because it uses next()
, can the same be done with csv.reader()
?
Edit: the file in question is a CSV file
I understand enumerate is better to use when it is needed to read a specific line from a large file, because it uses next()
, can the same be done with csv.reader()
?
Edit: the file in question is a CSV file