diff options
author | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-05-20 09:02:49 +0000 |
---|---|---|
committer | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-05-20 09:02:49 +0000 |
commit | 001ce22afb5fba04e51c748ae680d0d34baaded2 (patch) | |
tree | 456543bd74299cab8fdeb15250d1b968da289303 /wk7/lect/favorites.py | |
parent | bc62d26d9ef4b90ace52a9948af40c5c5bd11ddf (diff) |
Mon, May 20, 2024, 2:02 AM -07:00
Diffstat (limited to 'wk7/lect/favorites.py')
-rw-r--r-- | wk7/lect/favorites.py | 6 |
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]) |