reader()
Reason — In the CSV module in Python, the reader() function is used to read the contents of a CSV file into an object. This function returns a reader object which can be used to iterate over the rows of the CSV file, where each row is represented as a list of strings. This allows to process the data contained within the CSV file.