Answers for "curso python"

0

cursor python

import sqlite3

con = sqlite3.connect("mydb")

cur = con.cursor()

who = "Yeltsin"
age = 72

cur.execute("select name_last, age from people where name_last=? and age=?", (who, age))
print cur.fetchone()
Posted by: Guest on July-08-2020
-1

curso python

daas
Posted by: Guest on July-09-2021

Python Answers by Framework

Browse Popular Code Answers by Language