Write the output of the following code : import csv f = open(“data.csv”, ‘r’) row = csv.reader(f) print(row)
1.It prints the memory address where csv.reader object is stored
2. It prints the first record of data.csv
3. It prints all the records of data.csv
4.None of the above
Answer:1