I want to submit the input (users info) into the users table, but getting operational errors.
from tkinter import *
from tkinter.messagebox import *
import sqlite3
def submit():
connect = sqlite3.connect(r'D:\ACCTGSYSTEM.db')
c = connect.cursor()
c.executemany('INSERT INTO users(Fname, Lname, Uname, Pass) VALUES (?,?,?,?,)',(fname.get(),lname.get(),uname.get(),passw.get()))