我得到了一些代码,但并没有真正让它工作
listdata = [1, 2]
listdata1.insert(1, raw_input("Enter first thing into DB: ")
listdata2.insert(2, raw_input("Enter second thing into DB: ")
然后我制作数据库,然后
cursor.execute("INSERT INTO testdb (TABLE, TABLE) VALUES (%s, %s)", (listdata1, listdata2
这给了我: NameError: name 'listdata1' is not defined
以这种方式插入这个甚至可能吗?或者我怎样才能让它工作?