I need to insert list like this
list = [['1'], ['2'], ['3'], ['4']]
so I unpack it and try to insert it into db
a,b,c,d = list
db.execute("INSERT INTO show (titolo,stagioni,clima,temperature) VALUES (?,?,?,?)",(a,b,c,d))
db.commit()
but It returns this error
exception=InterfaceError('Error binding parameter 0 - probably unsupported type.')>
I tried even [list]
any help , thank