I can insert hardcoded values into an SQLite table with no problem, but I\'m trying to do something like this:
name = input(\"Name: \") phone = input(\"Phone
cur.executemany("insert into contacts (name, phone, email) values (?, ?, ?)", (name, phone, email))