请完善这段代码while True: with open("student.txt", "r", encoding='utf-8',errors='ignore') as f1: wordnew=f1.readlines() for i in wordnew: print(i) linke=input('请输入要删除学生的学号:') rts=0 for i in wordnew[1:]: rts+=1 if linke==i[:3]: break itemdel=wordnew.pop(rts) print(wordnew) for i in wordnew: print(i) file=open("student.txt", "r", encoding='utf-8',errors='ignore') f1.writelines(wordnew) f1.close() break
时间: 2024-02-10 14:13:21 浏览: 81
完善后的代码如下:
```python
while True:
with open("student.txt", "r", encoding='utf-8', errors='ignore') as f1:
wordnew = f1.readlines()
for i in wordnew:
print(i)
linke = input('请输入要删除学生的学号:')
rts = 0
for i in wordnew[1:]:
rts += 1
if linke == i[:3]:
break
itemdel = wordnew.pop(rts)
print(wordnew)
for i in wordnew:
print(i)
with open("student.txt", "w", encoding='utf-8', errors='ignore') as f1:
f1.writelines(wordnew)
break
```
主要的改动有:
1. 添加了对文件对象f1的关闭操作,使用with语句可以在代码块结束时自动关闭文件。
2. 将写入文件的操作放在了with语句之内,保证了写入的正确性。
3. 修改了读取文件和写入文件的模式参数,读取文件使用'r'模式,写入文件使用'w'模式。
4. 删除了多余的文件打开操作,保证代码的简洁性。
阅读全文