summaryrefslogtreecommitdiff
path: root/wk7
diff options
context:
space:
mode:
Diffstat (limited to 'wk7')
-rw-r--r--wk7/lect/favorites.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/wk7/lect/favorites.py b/wk7/lect/favorites.py
index de5fa80..34d62e5 100644
--- a/wk7/lect/favorites.py
+++ b/wk7/lect/favorites.py
@@ -2,4 +2,6 @@ import csv
with open("favorites.csv") as file:
reader = csv.reader(file)
-
+ next(reader)
+ for row in reader:
+ print(row[1])