第12533题 单选题
给定Python操作SQLite数据库的代码,判断下列说法正确的是?

有如下Python代码:

import sqlite3
conn=sqlite3.connect('cj.db')
cursor=conn.cursor()
cursor.execute('SELECT * FROM student')
rows=cursor.fetchmany(5)
for row in rows:
    print(row)
cursor.close()
conn.close()

已知查询的数据表中的数据超过5行。

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