原始内容
高亮显示
复制内容
import sqlite3 con = sqlite3.connect("mydb") cur = con.cursor() who = "Yeltsin" age = 72 cur.execute("select name_last, age from people where name_last=:who and age=:age", locals()) print cur.fetchone()
您还没有登录,登录后您可以:
首次使用?从这里 注册