Problem 1
Save the following text lines to a file called books.csv (notice that if the fields are separated by commas, you need to surround a field with quotes if it contains a comma):
Problem 2
Use the csv module and its DictReader method to read books.csv to the variable books. Print the values in books. Did DictReader handle the quotes and commas in the second book’s title?
Problem 4
Use the sqlite3 module to create a SQLite database called books.db and a table called books with these fields: title (text), author (text), and year (integer).
Problem 6
Select and print the title column from the book table in alphabetical order.
Problem 9
Install the Redis server and the Python redis library (pip install redis) on your computer. Create a Redis hash called test with the fields count (1) and name ('Fester Bestertester'). Print all the fields for test.