I have been trying with the below code:
import sqlite3 data_person_name = [(\'Michael\', \'Fox\'), (\'Adam\', \'Miller\'),
Replace the first ? in executemany statement with null.
?
executemany
null
So the following line can be rewritten:
c.executemany('INSERT INTO q1_person_name VALUES (?,?,?)', data_person_name)
as
c.executemany('INSERT INTO q1_person_name VALUES (null,?,?)', data_person_name)