ID EN
CSV

__next__

Python 3.11

Return the next row of the reader’s iterable object as a list (if the object was returned from reader()) or a dict (if it is a DictReader instance), parsed according to the current Dialect. Usually you should call this as next(reader).

Syntax

PYTHON
csvreader.__next__()

See Also

reader() DictReader Dialect