Python - Structured Data Files
Find the error in this code that reads a CSV file:
import csv
with open('file.csv', 'r') as f:
reader = csv.reader()
for row in reader:
print(row)