8 lines
203 B
Python
8 lines
203 B
Python
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]
|