the program must store these details in a table. I'm new to SQL and would like to know how to insert variables
c.execute('''INSERT INTO userAcc(name, dob, age) VALUES(%s,%s,%s)'''(name1, dob1, age1))
conn.commit()
c.close()
conn.close()