第15779题 判断题
判断给定的Python代码能否正确读取student.csv文件中的学生名单

student.csv文件存储有班级学生名单,以下是用于读取学生名单的Python代码:

f=open('student.csv','r')
s=f.read().strip('\n').split(';')
f.close()
{{ option.label }}
子题{{ index + 1 }} {{ child.type_label }}
{{ option.label }}
✓ 正确 ◐ 部分正确 ✗ 错误
程序运行统计
暂无判题统计
提交{{ questionInfo.stats ? questionInfo.stats.submit_count : 0 }}次 正确率{{ statsAccuracy }}%
答案解析