cur.execute("Create table emails(email text, name text, count integer);")
cur.execute('''insert into table emails(email, name, count) values(?,?,0)''',(email,name,))
this gives me this traceback
Traceback (most recent call last): File "c:\Users\ibrah\OneDrive\Desktop\python course\my code\database.py", line 20, in cur.execute('''insert into table emails(email, name, count) values(?,?,0)''',(email,name,)) sqlite3.OperationalError: near "table": syntax error
I don't know why it is wrong