summaryrefslogtreecommitdiff
path: root/wk7/lect/favorites.py
diff options
context:
space:
mode:
Diffstat (limited to 'wk7/lect/favorites.py')
-rw-r--r--wk7/lect/favorites.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/wk7/lect/favorites.py b/wk7/lect/favorites.py
index 34d62e5..ec01292 100644
--- a/wk7/lect/favorites.py
+++ b/wk7/lect/favorites.py
@@ -1,7 +1,13 @@
+
+# DOESN'T WORK BECAUSE WE DON'T HAVE FAVORITES.CSV
+
+
+
import csv
with open("favorites.csv") as file:
reader = csv.reader(file)
next(reader)
for row in reader:
+ favorite = row[1]
print(row[1])