A32419. 运行以下代码输出的数据为? ( ) import sqlite3connection=sqlite3.connect("students.db")cursor=connection.cursor()cursor.execute("CREATE TABLE students(name TEXT,age INTEGER)")cursor.execute("INSERT INTO students V…
单选题
困难
知识点
题目描述
运行以下代码输出的数据为? ( )
import sqlite3
connection=sqlite3.connect("students.db")
cursor=connection.cursor()
cursor.execute("CREATE TABLE students(name TEXT,age INTEGER)")
cursor.execute("INSERT INTO students VALUES(John',19)")
cursor.execute("INSERT INTO students VALUES('John',18)")
cursor.execute("DELETE FROM students WHERE name='John'")
cursor.execute("INSERT INTO students VALUES('John',17)")
cursor.execute("UPDATE students SET age=22 WHERE name='John"')
cursor.execute("SELECT*FROM students")
results=cursor.fetchall()
for row in results:
print(row)
connection.close()
选项(单选)
答案解析
详细答案解析为会员权益,按每日次数查看。
开通 / 升级会员
上一题
下一题