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
You can use ? to represent a parameter in an SQL query:
?
cur.execute("insert into contacts (name, phone, email) values (?, ?, ?)", (name, phone, email))