使用说明:将所有需要阅卷的答案按照以下格式放到一个target.txt文档中:姓名+空格+答案1+答案2多个学生请换行隔开如:学生1 A B B B C B B B BD C D C D B B C B B A AB C D C C B C B C B C D B B B B D C C D D B D A ....
# with open异常处理# 代码with open("poem.txt") as f: for line in f: print(line, end='')''' with open能够将之前的try..finally最后执行的关闭文件的操作,交给with open...