Python - Structured Data Files
Identify the issue in this code snippet that attempts to read a CSV file:
import csv
with open('data.csv', 'r') as f:
reader = csv.reader(f)
for row in reader:
print(row)