第13740题 单选题
运行以下Python SQLite代码的输出结果是什么?

运行以下Python代码,输出的数据为:

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()
{{ option.label }}
子题{{ index + 1 }} {{ child.type_label }}
{{ option.label }}
✓ 正确 ◐ 部分正确 ✗ 错误
程序运行统计
暂无判题统计
提交{{ questionInfo.stats ? questionInfo.stats.submit_count : 0 }}次 正确率{{ statsAccuracy }}%
答案解析