You will notice that we have three variables in our statement: table, columns, and values. These thus become the parameters with which the function is called:
def insert(table, columns, values):
We should, of course, follow that with a doc string:
'''Function to insert the form data 'values' into table 'table' according to the columns in 'column' '''

