I'm currently trying to pass csv data into an empty dict. Column A of the dict has the book title, column B the book's author. So once passed in, I'm hoping my dict will look like this:
books = {'Booktitle1':'Author1','Booktitle2':'Author2','Booktitle 3':'Author3'}
for book, author in csv.reader(csvfile): books[book] = author?