Initial commit

This commit is contained in:
2022-06-29 09:00:03 -04:00
commit 9cdb918098
6 changed files with 239 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
import csv
def get_tags():
user_tags = input("Please enter tags for the article separated by commas: ")
csv_reader = csv.reader(user_tags)
article_tags = [tuple(row) for row in csv_reader]