diff options
author | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-05-20 09:00:37 +0000 |
---|---|---|
committer | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-05-20 09:00:37 +0000 |
commit | cfe2f7cbe551b7c82a4c80671981498837daeab2 (patch) | |
tree | 0af813a226253a47dee8011e1cf8f97b00e6c832 | |
parent | 459c3675ab9a0bb3dcbbdcbbd7882a37099d920e (diff) |
Mon, May 20, 2024, 2:00 AM -07:00
-rw-r--r-- | wk7/lect/favorites.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/wk7/lect/favorites.py b/wk7/lect/favorites.py new file mode 100644 index 0000000..de5fa80 --- /dev/null +++ b/wk7/lect/favorites.py @@ -0,0 +1,5 @@ +import csv + +with open("favorites.csv") as file: + reader = csv.reader(file) + |