all I want to do is send a query like
SELECT * FROM table WHERE col IN (110, 130, 90);
So I prepared the following statement
Even simpler, build your query like this:
"SELECT * FROM TABLE WHERE col IN ("+",".join(["?"]*len(lst))+")"