Question: USE python write two functions 1. to_table: This function takes a csv filename, an SQLite filename, and a table name with default valuenew1. It adds
USE python write two functions
1. to_table: This function takes a csv filename, an SQLite filename, and a table name with default value"new1". It adds a new table with the specified name to the db that has the information from the csv file in it. The first row of the csv file contains the column names. All columns are TEXT type. The first column is the primary key. I recommend using Python's csv module so you don't have to parse the rows of the csv file yourself. HINT: look into using qmark notation with the sqlite3 .execute() method, ex:
c.exectue(INSERT INTO
